标签: gcc struct attributes packed
之间有区别 __attribute__((__packed__))和 __attribute__((packed))?
__attribute__((__packed__))
__attribute__((packed))
如果结构包装如下: struct test { int a; short b; } __attribute__((__packed__))永远不需要在结构的每个成员上使用packed属性,因为当结构被打包时,所有成员也总是被打包。它是否正确?
struct test { int a; short b; } __attribute__((__packed__))
答案 0 :(得分:1)
__
来源: