- 论坛徽章:
- 0
|
本帖最后由 crazyhadoop 于 2011-09-20 18:22 编辑
为什么aligned属性好像没有作用的? pragma pack就ok的?
- #include<stdio.h>
- struct my_struct{
- char a;
- char b;
- int c ;
- }__attribute__((aligned(2)));
- /*
- #pragma pack(2) //ok!!
- struct my_struct{
- char a;
- char b;
- int c;
- };
- #pragma pack()
- */
- int main (int argc, char** argv)
- {
- printf("size=%d\n",sizeof(struct my_struct));
- struct my_struct temp;
- printf("0x%x \n0x%x \n0x%x\n",&temp.a,&temp.b,&temp.c);
- return 0;
- }
复制代码 打印:
size=8
0xbfbdc28c
0xbfbdc28d
0xbfbdc290
如果按aligned(2),应该是:
size=6 ??
0xbfbdc28c
0xbfbdc28d
0xbfbdc29e ?? |
|