non-aggregates cannot be initialized with initializer list

From: http://blog.csdn.net/sp_daiyq/article/details/7008990


我定义了一个结构体,示意如下:
  1. Struct A  
  2. {  
  3.     int x;  
  4.     CString test;  
  5. };  


然后我定义一个变量同时对其进行串行初始化:

A a = {0, "hello"};

编译出现错误:non-aggregates cannot be initialized with initializer list

后来发现,可进行串行初始化的数据结构中是不能够有construct、private、protected等且没有基类的联合体、结构体、类。其成员也必须符合这样的条件。

编译出错是因为,A结构中成员“test”是CString类型,有构造函数。

以下结构可以进行initializer list,

  1. class c1assDemo  
  2. {  
  3. public:  
  4.     int x;  
  5.     char c;  
  6. };  

 

  1. struct A  
  2. {  
  3.     int x;  
  4.     char test[256];  
  5.     c1assDemo demo;  
  6. };  


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值