隐形牛排

文章
5
资源
0
加入时间
2年10月21天

C语言__attribute__(packed)属性

在公司实习的时候,看到了这个属性的应用,做个总结:其实很简单:程序中没有__attribute__(packed),优化对齐,一般是4字节对齐,有的话,紧凑型,不对齐,是多少就是多少。上代码:#include<stdio.h>struct unpacked_str{char c;int x;};struct packed_str{char c;int x;}_...