struct st_type
{ char name[10];
float score[3];
}
union u_type
{ int i;
unsigned char ch;
struct st_type student;
}t;
printf(“%d\n”,sizeof(t));
union 与sizeof的作用??
为什么我运行这段代码会出错
错在哪里??
struct st_type
{ char name[10];
float score[3];
}
union u_type
{ int i;
unsigned char ch;
struct st_type student;
}t;
printf(“%d\n”,sizeof(t));
union 与sizeof的作用??
为什么我运行这段代码会出错
错在哪里??
struct st_type
{
char name[10];
float score[3];
}; /*原先这儿缺分号*/
union u_type
{
int i;
unsigned char ch;
struct st_type student;
} t;
#include<stdio.h>
main()
{
printf("%d\n",sizeof(t)); /*原先这儿错为全角双引号*/
}
/*运行结果:24*/
就是union所占用内存的大小24字节。
这个共同体是看这个体里面占内存最大的那个决定的。这里没看明白ING。。。。
VC下对结构体采用内存对齐方式来分配空间。举个例子给楼主:
---------------------------------------------------
struct MyStruct
{
char dda; //偏移量为0,满足对齐方式,dda占用1个字节;
double dda1;//下一个可用的地址的偏移量为1,不是sizeof(double)=8
//的倍数,需要补足7个字节才能使偏移量变为8(满足对齐
//方式),因此VC自动填充7个字节,dda1存放在偏移量为8
//的地址上,它占用8个字节。
int type; //下一个可用的地址的偏移量为16,是sizeof(int)=4的倍
//数,满足int的对齐方式,所以不需要VC自动填充,type存
//放在偏移量为16的地址上,它占用4个字节。
};//所有成员变量都分配了空间,空间总的大小为1+7+8+4=20,不是结构
//的节边界数(即结构中占用最大空间的类型所占用的字节数sizeof
//(double)=8)的倍数,所以需要填充4个字节,以满足结构的大小为
//sizeof(double)=8的倍数。
所以该结构总的大小为:sizeof(MyStruc)为1+7+8+4+4=24。其中总的有7+4=11个字节是VC自动填充的,没有放任何有意义的东西。