a little questiong about creating objects. Say I have these two classes:

struct A{
    A(){cout << "A() C-tor" << endl;}
    ~A(){cout << "~A() D-tor" << endl;}
    };

    struct B : public A{
    B(){cout << "B() C-tor" << endl;}
    ~B(){cout << "~B() D-tor" << endl;}

    A a;
};

and in main I create an instance of B:

int main(){
B b;
}

Note that B inherit A and also has a field of type A

I am trying to figure out the rules. I know that when constructing an object first calls its parent constructor, and vice versa when destructing.

What about fields(A a; in this case)? When B is created, when will it call A's constructor? I haven't defined an initialization list, is there some kind of a default list? And if there's no default list? And the same question about destructing... I hope it's not vague Thanks!

link|improve this question
2  
Your example might be more explanatory if your message for the destructor is different from your message for the constructor. Also, what are those std::sort doing? – Tom Sep 24 '11 at 13:24
Also, when experimenting, compare the construction and destruction of B b, B* b = new B(); delete b; and A* a = new b(); delete a; (Compare what happens when you use the virtual keyword for your destructor, i.e. virtual ~A() {cout<<"A D-tor"<<endl;}) – Tom Sep 24 '11 at 13:29
@Tom, You are right. Removing compiler errors. – iammilind Sep 24 '11 at 13:35
I've edited the code in your question so that the four methods all print different messages. Now all you have to do to figure this out for yourself is to instantiate B and watch stdout. Please review and roll back if that's not what you actually meant. – Caleb Sep 24 '11 at 13:37
feedback

5 Answers

up vote 3 down vote accepted
  • Construction always starts from the base class. If there are multiple base classes then, it starts from the left most base. (side note: If there is a virtual inheritance then it's given higher preference).
  • Then it comes the turn for member fields. They are initialized in the order they are declared
  • At the last the class itself is constructed
  • The order of destructor is exactly reverse

Irrespective of initializer list, the call hierarchy will be like this:

  1. Base class A's constructor
  2. Field A's object creation
  3. Derived class B's constructor
link|improve this answer
feedback

Base classes are always constructed before fields. Fields are constructed in the order that they are declared in the class. This order has nothing to do with the initialization list. When something is being initialized, it will look through your initialization list for the parameters, and call the default constructor if there is no match. Destructors are always called in the reverse order.

link|improve this answer
feedback

Base class constructor always executes first.so when you write a statement B b; the constructor of A is called first and then the B class constructor.therefore the output from the constructors will be in a sequence as follows:

A() C-tor
A() C-tor
B() C-tor
link|improve this answer
feedback

Assuming there is not virtual/multiple inheritance (that complicates things quite a bit) then the rules are simple:

  1. The object memory is allocated
  2. The constructor of base classes are executed, starting from most abstract
  3. The member initialization is executed
  4. The object become a true instance of its class
  5. Constructor code is executed

One important thing to remember is that until step 4 the object is not yet an instance of its class, becuse it gains this title only after the execution of e constructor begins. This means that if there is an exception thrown during the constructor of a member the destructor of the object is not executed, but only already constructed parts (e.g. members or base classes) will be destroyed. This also means that if in the constructor of a member or of a base class you call any virtual member function of the object the implementation called will be the base one, not the derived one. Another important thing to remember is that member listed in the initialization list will be constructed in the order they are declared in the class, NOT in the order they appear in the initialization list (luckily enough most decent compilers will issue a warning if you list members in a different order from the class declaration).

Destruction happens in the exact reverse order: first the object destructor is executed, then it loses its class (i.e. from this point on the object is considered a base object) then all members are destroyed in reverse declaration order and finally the base class destruction process is executed up to the most abstract parent. As for the constructor if you call any virtual member function of the object (either directly or indirectly) in a base or member destructor the implementation executed will be the parent one because the object lost its class title when the class destructor completed.

link|improve this answer
feedback

Output from the modified code is:

A() C-tor
A() C-tor
B() C-tor
~B() D-tor
~A() D-tor
~A() D-tor
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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