non-aggregates cannot be initialized with initializer list

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


我定义了一个结构体,示意如下:
[cpp] view plain copy
  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,

[cpp] view plain copy
  1. class c1assDemo  
  2. {  
  3. public:  
  4.     int x;  
  5.     char c;  
  6. };  

 

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


你可能感兴趣的:(non-aggregates cannot be initialized with initializer list)