- 论坛徽章:
- 0
|
如何在声明structure时候初始化一个带有联合的类型?
我觉得在这个结构题的定义里,union un1是多余的,b和c根本就是完全一样的东西,为什么还要多加一层呢?
- typedef struct test1{
- int a;
- union{
- int b;
- struct{
- int c;
- union{
- int d;
- char *e;
- }un2;
- }test2;
- }un1;
- }test;
复制代码
我把代码改了一下,编译时警告基本都没了。
- #include <stdio.h>;
- typedef struct test1{
- int a;
- struct{
- int c;
- union{
- int d;
- char *e;
- };
- };
- } test;
- #if 1
- test aa[4] ={
- {1, 11 }, /*a,b*/
- {2,{22, {222}} },/*a,c,d*/
- {3,{33, {333}} },//a,c,d
- {4,{44, {(int)"hello"}} }//a,c,e
- };
- #endif
- int main()
- {
- printf("1==(%d, %d, %d)\n",aa[0].a, aa[0].c, aa[0].d);
- printf("2==(%d, %d, %d)\n",aa[1].a, aa[1].c, aa[1].d);
- printf("3==(%d, %d, %d)\n",aa[2].a, aa[2].c, aa[2].d);
- printf("4==(%d, %d, %s)\n",aa[3].a, aa[3].c, aa[3].e);
- return 0;
- }
复制代码
至于楼主原来定义的结构,我还不知道怎么改能把警告信息去掉。 |
|