(10)-浅谈联合体
最后更新于:2022-04-01 16:11:14
~~~
#include <stdio.h>
#include <string.h>
struct TStudent
{
long int ID;
union{
char name[10];
char mingzi[11];
};
char dept[17];
};
int main()
{
TStudent stu;
strcpy(stu.name,"zh");
strcpy(stu.dept,"computer science");
printf("student`s mingzi is:%s\n",stu.mingzi);
printf("student`s name is:%s\n",stu.name);
printf("student`s department is:%s\n",stu.dept);
}
~~~
**疑**:以上代码输出结果是什么,为什么?
……………………………………………………………………………………………………………………………………
参考解答:
~~~
union{
char name[10];
char mingzi[11];
};
~~~
定义这个就代表name[10]和mingzi[11]共享同一块内存。这里顺便提一下,mingzi[11]的空间大于name[10],所以申请空间的时候以union里面最大的字段为准。假如
~~~
union
{
char name[10];
char mingzi[11];
} UN_NAME;
~~~
那么sizeof(UN_NAME) 应该等于11。即取最大的字段的空间。当然这里不涉及字节对齐问题。
所以当strcpy(stu.name,"zh");执行这句的时候,mingzi[11]的内存空间也被赋值了"zh",所以最后打印两者的结果是一样的。
======= welcome to my HomePage([*http://blog.csdn.net/zhanxinhang*](http://blog.csdn.net/zhanxinhang)) to have a communication =======