offsetof

来自cppreference.com
< c‎ | types

在头文件 <stddef.h> 中定义
#define offsetof(type, member) /*implementation-defined*/
offsetof扩展类型size_t,,它的值的偏移量,以字节为单位,从一个指定类型的对象的开始到其指定的部件,包括填充物,如果没有..恒定
原文:
The macro offsetof expands to a constant of type size_t, the value of which is the offset, in bytes, from the beginning of an object of specified type to its specified member, including padding if any.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 另请参阅

返回无符号整数类型的sizeof运营商
原文:
unsigned integer type returned by the sizeof operator
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(typedef) [edit]
C++ documentation for offsetof