vote up 10 vote down star
4

I have a constructor that takes some arguments. I had assumed that they were constructed in the order listed, but in one case it appears they were being constructed in reverse resulting in an abort. When I reversed the arguments the program stopped aborting. This is an example of the syntax I'm using. The thing is, a_ needs to be initialized before b_ in this case. Can you guarantee the order of construction?

e.g.

class A
{
  public:
    A(OtherClass o, string x, int y) :
      a_(o), b_(a_, x, y) { }

    OtherClass a_;
    AnotherClass b_;
};
flag

You say you're asking about constructor arguments, but they're evaluated before you ever reach the constructor, and they're evaluated in an unspecified, compiler-determined order. But you're really asking about the order of initialization lists, so I've changed the question title for you. – Rob Kennedy Aug 7 at 12:45
Thanks for that, that is what I was meaning. – Matt H Aug 7 at 22:20

2 Answers

vote up 10 vote down check

It depends on the order of member variable declaration in the class. So a_ will be the first one, then b_ will be the second one in your example.

link|flag
1  
I just discovered this by pure accident. – Matt H Aug 7 at 4:05
2  
In fact, good compilers will warn if you have a different order in the declaration versus the constructor initialiser list. For example, see -Wreorder in gcc. – Greg Hewgill Aug 7 at 4:17
12  
The reason for which they are constructed in the member declaration order and not in the order in the constructor is that one may have several constructors, but there is only one destructor. And the destructor destroy the members in the reserse order of construction. – AProgrammer Aug 7 at 6:45
1  
@AProgrammer, great. I never thought of it :) – AraK Aug 7 at 7:23
1  
Great explanation @AProgrammer, thanks for that. – Matt H Aug 7 at 20:52
vote up 15 vote down

To quote the standard, for clarification:

12.6.2.5

Initialization shall proceed in the following order:

...

  • Then, nonstatic data members shall be initialized in the order they were declared in the class definition (again regardless of the order of the mem-initializers).

...

link|flag
1  
+1 for the quote. – AraK Aug 7 at 4:12

Your Answer

Get an OpenID
or

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