offsetof
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <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.
[编辑] 另请参阅
(typedef) | |
C++ documentation for offsetof
|