C++ 数组指针累加后的偏移量

typedef struct _MyStruct { int a; int b; int c; _MyStruct() { a = 0; b = 0; c = 0; } }MyStruct; int main() { #if 1 MyStruct* st[3]; //指针数组 MyStruct* s
posted @ 2022-09-26 12:48  Brickert  Views(82)  Comments(0Edit  收藏  举报