码迷,mamicode.com
首页 > 其他好文 > 详细

offsetof

时间:2017-05-12 14:24:50      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:结构   fse   htm   har   com   struct   lan   char s   对齐   

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

offsetof

标签:结构   fse   htm   har   com   struct   lan   char s   对齐   

原文地址:http://www.cnblogs.com/coversky/p/6845330.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!