免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 5965 | 回复: 12
打印 上一主题 下一主题

如何在声明structure时候初始化一个带有联合的类型? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-04-24 14:41 |只看该作者 |倒序浏览
想在全局变量中初始化,而不是以赋值的方式。
按照以下方式声明,编译有错误
union.c:17: warning: excess elements in union initializer
union.c:17: warning: (near initialization for `aa[1].un1')
union.c:18: warning: excess elements in union initializer
union.c:18: warning: (near initialization for `aa[2].un1')
union.c:19: warning: excess elements in union initializer
union.c:19: warning: (near initialization for `aa[3].un1')

请问如何声明?
谢谢~

  1. typedef struct test1{
  2.         int a;
  3.         union{
  4.                 int b;
  5.                 struct{
  6.                         int c;
  7.                         union{
  8.                                 int d;
  9.                                 char *e;
  10.                         }un2;
  11.                 }test2;
  12.         }un1;
  13. }test;
  14. #if 1
  15. test aa[4] ={
  16. {1,11}, /*a,b*/
  17. {2,{22,222}},/*a,c,d*/
  18. {3,{33,333}},//a,c,d
  19. {4,{44,"hello"}}//a,c,e
  20. };
  21. #endif
  22. int main()
  23. {


  24.         printf("1==:%d, %d\n",aa[0].a, aa[0].un1.b);
  25.         printf("2==:%d, %d, %d\n", aa[1].a, aa[1].un1.test2.c, aa[1].un1.test2.un2.d);
  26.         printf("3==:%d, %d, %d\n", aa[2].a, aa[2].un1.test2.c, aa[2].un1.test2.un2.d);
  27.         printf("4==:%d, %d, %s\n", aa[3].a, aa[3].un1.test2.c, aa[3].un1.test2.un2.e);

  28.         return 0;
  29. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2005-04-25 11:32 |只看该作者

如何在声明structure时候初始化一个带有联合的类型?

关注

论坛徽章:
0
3 [报告]
发表于 2005-04-25 11:54 |只看该作者

如何在声明structure时候初始化一个带有联合的类型?

我晕,有这样嵌套init的吗??
不出错才怪!

论坛徽章:
0
4 [报告]
发表于 2005-04-25 14:59 |只看该作者

如何在声明structure时候初始化一个带有联合的类型?

原帖由 "macro-linux" 发表:
我晕,有这样嵌套init的吗??
不出错才怪!


这样的嵌套的确少见,不过我现在真有这样的问题。不知道这样可不可以,下面的code赋值没问题。

  1. typedef struct test1{
  2.         int a;
  3.         union{
  4.                 int b;
  5.                 struct{
  6.                         int c;
  7.                         union{
  8.                                 int d;
  9.                                 char *e;
  10.                         }un2;
  11.                 }test2;
  12.         }un1;
  13. }test;
  14. #if 0
  15. test aa[4] ={
  16. {1,11}, /*a,b*/
  17. {2,{22,222}},/*a,c,d*/
  18. {3,{33,333}},//a,c,d
  19. {4,{44,"hello"}}//a,c,e
  20. };
  21. #endif
  22. int main()
  23. {
  24. test aa[4];
  25. aa[0].a = 1;
  26. aa[0].un1.b = 11;

  27. aa[1].a = 2;
  28. aa[1].un1.test2.c = 22;
  29. aa[1].un1.test2.un2.d = 222;

  30. aa[2].a = 3;
  31. aa[2].un1.test2.c = 33;
  32. aa[2].un1.test2.un2.d = 333;

  33. aa[3].a = 4;
  34. aa[3].un1.test2.c = 44;
  35. aa[3].un1.test2.un2.e = "Hello";


  36.         printf("1==:%d, %d\n",aa[0].a, aa[0].un1.b);
  37.         printf("2==:%d, %d, %d\n", aa[1].a, aa[1].un1.test2.c, aa[1].un1.test2.un2.d);
  38.         printf("3==:%d, %d, %d\n", aa[2].a, aa[2].un1.test2.c, aa[2].un1.test2.un2.d);
  39.         printf("4==:%d, %d, %s\n", aa[3].a, aa[3].un1.test2.c, aa[3].un1.test2.un2.e);

  40.         return 0;
  41. }
复制代码

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
5 [报告]
发表于 2005-04-25 15:10 |只看该作者

如何在声明structure时候初始化一个带有联合的类型?

union只提供了一个存储区,所以只能用一个值初始化一个union

论坛徽章:
0
6 [报告]
发表于 2005-04-25 15:22 |只看该作者

如何在声明structure时候初始化一个带有联合的类型?

我觉得在这个结构题的定义里,union un1是多余的,b和c根本就是完全一样的东西,为什么还要多加一层呢?

  1. typedef struct test1{
  2.    int a;
  3.    union{
  4.       int b;
  5.       struct{
  6.          int c;
  7.          union{
  8.             int d;
  9.             char *e;
  10.          }un2;
  11.       }test2;
  12.    }un1;
  13. }test;
复制代码


我把代码改了一下,编译时警告基本都没了。

  1. #include <stdio.h>;

  2. typedef struct test1{
  3.         int a;
  4.         struct{
  5.                 int c;
  6.                 union{
  7.                         int d;
  8.                         char *e;
  9.                 };
  10.         };
  11. }        test;

  12. #if 1
  13. test aa[4] ={
  14. {1, 11 }, /*a,b*/
  15. {2,{22, {222}} },/*a,c,d*/
  16. {3,{33, {333}} },//a,c,d
  17. {4,{44, {(int)"hello"}} }//a,c,e
  18. };
  19. #endif
  20. int main()
  21. {
  22.         printf("1==(%d, %d, %d)\n",aa[0].a, aa[0].c, aa[0].d);
  23.         printf("2==(%d, %d, %d)\n",aa[1].a, aa[1].c, aa[1].d);
  24.         printf("3==(%d, %d, %d)\n",aa[2].a, aa[2].c, aa[2].d);
  25.         printf("4==(%d, %d, %s)\n",aa[3].a, aa[3].c, aa[3].e);
  26.         return 0;
  27. }

复制代码


至于楼主原来定义的结构,我还不知道怎么改能把警告信息去掉。

论坛徽章:
0
7 [报告]
发表于 2005-04-25 16:11 |只看该作者

如何在声明structure时候初始化一个带有联合的类型?

原先的警告 就是因为编译器分不出第二个union,可能这样的定义真有问题,但却无法解释依次赋值却可以。
其实我也只是好奇,只能继续关注。

论坛徽章:
0
8 [报告]
发表于 2005-04-25 16:25 |只看该作者

如何在声明structure时候初始化一个带有联合的类型?

原先的定义语法上没问题

但是初始化的时候可能结构层次太复杂编译器无法区分用哪个数值去填充哪个成员,所以产生警告信息

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
9 [报告]
发表于 2005-04-25 16:37 |只看该作者

如何在声明structure时候初始化一个带有联合的类型?

C的编译器不可能根据你的初始化实参来确定union的运行时结构,它只会机械地取第一个数据类型来进行初始化。

论坛徽章:
0
10 [报告]
发表于 2005-04-25 16:45 |只看该作者

如何在声明structure时候初始化一个带有联合的类型?

typedef struct test1{
   int a;
   union{
//     int b;
      struct{
         int c;
         union{
          //  int d;
            char *e;
  int d;               //
         }un2;
      }test2;
     int b;  //
   }un1;
}test;
#if 1
test aa[4] ={
{1,11}, /*a,b*/
{2,{22,(char *)222}},/*a,c,d*/
{3,{33,(char *)333}},//a,c,d
{4,{44,"hello"}}//a,c,e
};
#endif
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP