Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

An object of a struct/class (that has no constructor) can be created using an initializer 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
share|improve this question
2  
Post some code that illustrates what you are asking about. – anon Jan 19 '10 at 18:03
1  
Neil, answer made sense to me. – Anycorn Jan 19 '10 at 18:15

2 Answers

up vote 12 down vote accepted

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.

share|improve this answer

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.

share|improve this answer
No, initializing an array of chars is different from initializing a POD struct that can contain variables of different types. Also, you're doing it the ctor, the OP asked for initialization on an object that has a defined ctor. – Macke Jan 19 '10 at 18:55
actually, g++ has a heck to do that, not standard: (char[1]){ 0 } – Anycorn Jan 19 '10 at 18:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.