offsetof
offsetof,程序语言,该宏用于求结构体中一个成员在该结构体中的偏移量。
struct student{int id ,int age,char * address}; id 占4字节,相对于结构体偏移0字节,age占4字节,相对于结构体偏移4字节,address相对于结构体偏移8字节。
若struct student{char sex ,int age,char * address};sex为1字节,相对于结构体偏移0字节,age 占4字节,相对于结构体偏移4字节. address偏移8字节。
因为有字节对齐机制。sex后面的3字节都是空闲的。这样做是为了提高计算机的读取效率。
offsetof本身就是偏移的意思。就是查看偏移量的。
offsetof(struct student,id) 0 offsetof(struct student,age) 4 offsetof(struct student,address) 8
offsetof(struct student,sex) 0 offsetof(struct student,age) 4 offsetof(struct student,address) 8