在结构体变量的声明中,经常可以看到__attribute__((packed))修饰符。这是做什么用的呢?
__attribute__ ((packed)) 的作用就是告诉编译器取消结构在编译过程中的优化对齐,按照实际占用字节数进行对齐,是GCC特有的语法。
例子:
struct ip{
unsigned char x:2;
unsigned char y:2;
unsigned short proto:2;
int z:2;
};
在这里,结构体所占的字节是:4
struct ip{
unsigned char x:2;
unsigned char y:2;
unsigned short proto:2;
int z:2;
} __attribute__((packed));
在这里,结构体所占的字节是:1
因此可以看到,packed属性修改了编译器对结构体成员的布局,尽可能压缩存储空间。默认情况下,gcc会为了效率考量,会让char或者short独占一个双字(4字节)。