考虑以下示例:
struct mystruct
{
int a;
int b;
int c;
};
int main()
{
mystruct x;
std :: cout << reinterpret_cast <size_t> (&(x.b)) - reinterpret_cast <size_t> (&x) << std :: endl;
}
以上操作是使用reinterpret_cast
来确定成员b
在结构mystruct
内的位置。在我的系统上(并且,我想,在任何合理的系统上),上面的结果为4
。
现在,我需要的是完全相同,但是在编译时。有没有办法完成这样的事情?我需要的是一些static constexpr size_t
,在编译时会告诉我b
在mystruct
内的位置。
答案 0 :(得分:2)
您可以使用offsetof
macro:
size_t constexpr b_offset = offsetof(mystruct, b);
请注意,您不能在同一个类定义中的函数之外使用offsetof
,因为此类尚未完成。