0

可能重复:
编译时的偏移量

如何在 C 的结构中找到成员的偏移量?例如,我怎样才能找到t这个结构中的偏移量:

struct test
{
  int a;
  int b;
  struct test* t;      
  int c;
};
4

1 回答 1

4

使用来自:的offsetof()宏。(理想的例子stddef.hoffsetof(struct test, t)

于 2012-06-06T17:40:25.340 回答