文章内容来源于狄泰软件学院唐老师C++课程课件
一、如何初始化父类成员?父类构造函数和子类构造函数有什么关系?
- 子类中可以定义构造函数
- 子类构造函数
(1)必须对继承而来的成员进行初始化
(2)直接通过初始化列表或者赋值的方式进行初始化
(3)调用父类构造函数进行初始化
父类构造函数在子类中的调用方式
(1)默认调用
适用于无参构造函数和使用默认参数的构造函数
(2)显示调用
通过初始化列表进行调用
适用于所有父类构造函数
实例分析:子类的构造初探
#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)
{
cout << "Child(string s) : " << s << endl;
}
};
int main()
{
Child c; //r如果父类没有无参构造函数则报错
Child cc("cc");
return 0;
}
Parent()
Child()
Parent(string s) : cc
Child(string s) : cc
如果:
class Child : public Parent
{
public:
Child()
{
cout << "Child()" << endl;
}
Child(string s) //没有显示调用父类的构造函数则调用默认
{
cout << "Child(string s) : " << s << endl;
}
};
int main()
{
Child c;
Child cc("cc");
return 0;
}
则结果为:
Parent()
Child()
Parent()
Child(string s) : cc
构造规则:
- 子类对象在创建时会首先调用父类的构造函数
- 先执行父类构造函数再执行子类的构造函数
- 父类构造函数可以被隐式调用或者显示调用
子类对象的构造
对象创建时构造函数的调用顺序
- 调用父类的构造函数
- 调用成员变量的构造函数
- 调用类自身的构造函数
- 口诀:先父母,后客人,在自己
实例分析:子类构造深度解析
#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")
//Child() : mO1("Default 1"), mO2("Default 2")这段代码没有后面的 mO1("Default 1"), mO2("Default 2")则报错,因为没有体现先父母,后客人,再自己。没有后面的这就初始化列表,则 Object mO1; Object mO2;无法被初始化,没有体现后客人,而且其他地方也没有看到关于这两个对象的初始化,所以要在初始化列表里面显示调用。
{
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
子类对象的析构
- 析构函数的调用顺序与构造函数相反
- 执行自身的析构函数
- 执行成员变量的析构函数
- 执行父类的析构函数’
实例分析:对象的析构
#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
总结:
- 子类对象在创建时需要调用父类构造函数进行初始化
- 先执行父类构造函数然后执行成员的构造函数
- 父类构造函数显示调用需要在初始化列表中进行
- 子类对象在销毁时需要调用父类析构函数进行清理
- 析构顺序与构造顺序对称相反