C 库宏 offsetof(type, member-designator) 会生成一个类型为 size_t 的整型常量,它是一个结构成员相对于结构开头的字节偏移量。成员是由 member-designator 给定的,结构的名称是在 type 中给定的。
在阅读Linux/UNIX系统编程手册一书时阅读源代码时有如下相关注释:
/* REQ_MSG_SIZE computes size of 'mtext' part of 'requestMsg' structure.
We use offsetof() to handle the possibility that there are padding
bytes between the 'clientId' and 'pathname' fields. */
使用offsetof()避免结构成员之间存在填充字节padding bytes,示例代码如下:
示例代码一:
#include <stddef.h>
#include <stdio.h>
struct address {
char name;
int phone;
char street;
};
int main()
{
printf("address 结构中的 name 偏移 = %ld 字节\n",
offsetof(struct address, name));
printf("address 结构中的 phone 偏移 = %ld 字节\n",
offsetof(struct address, phone));
printf("address 结构中的 street 偏移 = %ld 字节\n",
offsetof(struct address, street));
return(0);
}
运行结果如下:
root@52coder:~/workspace# gcc -g -o offset offset.c
root@52coder:~/workspace# ./offset
address 结构中的 name 偏移 = 0 字节
address 结构中的 phone 偏移 = 4 字节
address 结构中的 street 偏移 = 8 字节
示例代码二:
#include <stddef.h>
#include <stdio.h>
struct address {
char name;
char street;
int phone;
};
int main()
{
printf("address 结构中的 name 偏移 = %ld 字节\n",
offsetof(struct address, name));
printf("address 结构中的 street 偏移 = %ld 字节\n",
offsetof(struct address, street));
printf("address 结构中的 phone 偏移 = %ld 字节\n",
offsetof(struct address, phone));
return(0);
}
执行结果:
root@52coder:~/workspace# ./offset
address 结构中的 name 偏移 = 0 字节
address 结构中的 street 偏移 = 1 字节
address 结构中的 phone 偏移 = 4 字节