开发者

C++: Constructor versus initializer list in struct/class

An object of a struct/class (that has no constructor) can be created using an initializer开发者_StackOverflow中文版 list. Why is this not allowed on struct/class with constructor?

struct r { int a; };
struct s { int a; s() : a(0) {} };
r = { 1 }; // works
s = { 1 }; // does not work


No, an object with a constructor is no longer considered a POD (plain old data). Objects must only contain other POD types as non-static members (including basic types). A POD can have static functions and static complex data members.

Note that the upcoming C++ standard will allow you to define initializer lists, which will allow non-POD objects to be initialized with braces.


If by your question you mean to ask, "Can I do this:"

struct MyGizmo
{
  char things_[5];
  MyGizmo() : things_({'a', 'b', 'c', 'd', 'e'}) ();
};

...then the answer is no. C++ doesn't allow this.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜