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!
std::sortdoing? – Tom Sep 24 '11 at 13:24B b,B* b = new B(); delete b;andA* a = new b(); delete a;(Compare what happens when you use thevirtualkeyword for your destructor, i.e.virtual ~A() {cout<<"A D-tor"<<endl;}) – Tom Sep 24 '11 at 13:29