c++中子类父类的构造顺序

(本人菜鸟, 新学c++)通常情况下,基类及派生类(即父类及子类)都含有构造函数(创建类时调用)以及析构函数(删除类时调用)。

那么, 当子类定义一个对象时, 他调用的构造函数以及析构函数的顺序是如何的呢?

这是情况1下的代码:

#include<iostream>
using namespace std;

class A {
	public:
	A() {
		cout << this << " new super\n"; 
	}
	~A() {
		cout << this << " delete super\n";
	}
};

class B : public A {
	public:
	B() {
		cout << this << " new sub\n";
	}
	~B() {
		cout << this << " delete sub\n";
	}
};

int main(int args, char*argv []) {
	B b;
	cout << &b << endl;
	/*
	 * 或者如下:
	 *
	 B *b = new B();
	 cout <<b << endl;
	 delete b;
	 *
	 */ 
}

  

运行之后的结果为:

可以看出, 当初始化子类是先初始化父类, 而当释放时是先子类,在父类。

 

posted on 2012-05-09 22:27  thoupin  阅读(1055)  评论(0编辑  收藏  举报

导航