可能重复:
编译时的偏移量
如何在 C 的结构中找到成员的偏移量?例如,我怎样才能找到t
这个结构中的偏移量:
struct test
{
int a;
int b;
struct test* t;
int c;
};
可能重复:
编译时的偏移量
如何在 C 的结构中找到成员的偏移量?例如,我怎样才能找到t
这个结构中的偏移量:
struct test
{
int a;
int b;
struct test* t;
int c;
};