今天来学习C++中继承的构造与析构,有兴趣一起学习的加qq:1126137994
1、问题
如何初始化父类成员?父类构造函数与子类构造函数有什么关系?
子类对象是如何构造的?
- 子类中可以定义构造函数
- 子类构造函数必须对继承而来的成员进行初始化
初始化的方法有两种:
-直接通过初始化列表或者赋值的方式进行初始化
-调用父类的构造函数进行初始化
父类构造函数在子类中的调用方式
- 默认调用
-适用于无参构造函数和使用默认参数的构造函数 - 显示调用
-通过初始化列表进行调用
-适用于所有父类构造函数
调用方式如图所示:
下面还是写一个简单的程序来初探子类构造函数:
#include <iostream>
#include <string>using namespace std;class Parent
{
public:Parent(){cout << "Parent()" << endl;}Parent(string s){cout << "Parent(string s) : " << s << endl;}
};class Child : public Parent
{
public:Child(){cout << "Child()" << endl;}Child(string s) : Parent(s) //这里是Child类继承Parent类的带参数的构造函数{cout << "Child(string s) : " << s << endl;}
};int main()
{ Child c; Child cc("cc");return 0;
}
上面的程序的运行结果为:
Parent()
Child()
Parent(string s) : cc
Child(string s) : cc
由以上程序分析可知:
子类对象的构造的规则:
- 子类对象在创建时,首先会调用父类的构造函数
- 先执行父类构造函数,再执行子类构造函数
- 父类构造函数可以被隐式调用,或者显示调用
那么构造函数的调用顺序是什么呢?
- 调用父类构造函数
- 调用成员变量的构造函数
调用类自身的构造函数
总结为一句口诀:
先父母,后客人,再自己!!!
2、 子类构造的深度解析
下面再看一个例子,让我们理解一下子类构造函数的深层意义:
#include <iostream>
#include <string>using namespace std;class Object
{
public:Object(string s){cout << "Object(string s) : " << s << endl;}
};class Parent : public Object
{
public:Parent() : Object("Default"){cout << "Parent()" << endl;}Parent(string s) : Object(s){cout << "Parent(string s) : " << s << endl;}
};class Child : public Parent
{Object mO1;Object mO2;
public:Child() : mO1("Default 1"), mO2("Default 2"){cout << "Child()" << endl;}Child(string s) : Parent(s), mO1(s + " 1"), mO2(s + " 2"){cout << "Child(string s) : " << s << endl;}
};int main()
{ Child cc("cc");return 0;
}
编译运行结果为:
Object(string s) : cc
Parent(string s) : cc
Object(string s) : cc 1
Object(string s) : cc 2
Child(string s) : cc
由以上程序的运行结果分析:
- 当创建对象Child cc(“cc”);时,子类先调用父类的构造函数,Parent(string s),由于Parent还有一个父类Object,所以先Parent又调用Object(string s),所以先打印的语句为:Object(string s) : cc。
- 然后调用Parent的构造函数Parent(s)打印:Parent(string s) : cc。
- 再调用成员变量的构造函数:Object(string s),分别打印Object(string s) : cc 1,Object(string s) : cc 2
- 最后调用自己的构造函数:Child(string s),打印:Child(string s) : cc
以上的分析刚好印证了那句口诀:
子类调用构造函数的顺序的口诀为:
先父母,后客人,再自己!!!
3、子类对象的析构 ##
析构函数的调用顺序与构造函数的调用顺序刚好相反
- 执行自身的析构函数
- 执行成员变量的析构函数
- 执行父类的析构函数
下面还是以一个简单的示例程序来说明这一点:
#include <iostream>
#include <string>using namespace std;class Object
{string ms;
public:Object(string s){cout << "Object(string s) : " << s << endl;ms = s;}~Object(){cout << "~Object() : " << ms << endl;}
};class Parent : public Object
{string ms;
public:Parent() : Object("Default"){cout << "Parent()" << endl;ms = "Default";}Parent(string s) : Object(s){cout << "Parent(string s) : " << s << endl;ms = s;}~Parent(){cout << "~Parent() : " << ms << endl;}
};class Child : public Parent
{Object mO1;Object mO2;string ms;
public:Child() : mO1("Default 1"), mO2("Default 2"){cout << "Child()" << endl;ms = "Default";}Child(string s) : Parent(s), mO1(s + " 1"), mO2(s + " 2"){cout << "Child(string s) : " << s << endl;ms = s;}~Child(){cout << "~Child() " << ms << endl;}
};int main()
{ Child cc("cc");cout << endl;return 0;
}
运行结果为:
Object(string s) : cc
Parent(string s) : cc
Object(string s) : cc 1
Object(string s) : cc 2
Child(string s) : cc
~Child() cc
~Object() : cc 2
~Object() : cc 1
~Parent() : cc
~Object() : cc
由运行结果可以很明显看出,析构函数的调用书序,就是与构造函数的调用顺序相反。
4、总结
- 子类对象在进行创建时需要调用父类构造函数进行初始化
- 先执行父类构造函数,再执行成员构造函数
- 父类构造函数显示调用需要在初始化列表中使用
- 子类在销毁时会调用父类的析构函数进行清理
- 析构顺序与构造顺序对称相反
想获得各种学习资源以及交流学习的加我(有我博客中写的代码的原稿):
qq:1126137994
微信:liu1126137994
可以共同交流关于嵌入式,操作系统,C++语言,C语言,数据结构等技术问题。