派生类的构造函数

Posted mocuishle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了派生类的构造函数相关的知识,希望对你有一定的参考价值。

由于派生类包含基类的原因,我们在创建一个派生类的时候,系统会先创建一个基类。需要注意的是,派生类会吸纳基类的全部成员,但并不包括构造函数及后面讲的析构函数,那么就意味着创建派生类在调用自己的构造函数之前,会先调用基类的构造函数。

#include <iostream>
using namespace std;

class Base{
public:
	Base(){
		cout << "This is Base constructor" << endl;
	}
	~Base(){
		cout << "THis is Base discontructor" << endl;
	}
	Base(int n): num(n){}

	void print(){
		cout << "Hello Base class: " << num << endl;
	}

private:
	int num = 1;
};

class Derived : public Base{
public:
	Derived(){
		cout << "This is Derived constructor" << endl;
	}
	~Derived(){
		cout << "THis is Derived disconstructor" << endl;
	}
	//基类如果有带参构造函数,那么派生类通过基类的构造函数
	//来初始化它的基类部分
	//首先初始化基类部分,然后再依次初始化它自己的部分
	Derived(int n): Base(n), code(n){}

	void greet(){
		cout << "Hello, Derived class: " << code << endl;
	}

private:
	int code = 2;
};

int main(){
	Derived A, B(10);
	A.print();
	A.greet();
	B.print();
	B.greet();
	return 0;
}

运行结果:

技术分享图片

 

以上是关于派生类的构造函数的主要内容,如果未能解决你的问题,请参考以下文章

派生类的 C++ 构造函数,其中基类包含类成员

派生类的构造函数

为啥不能在派生类的构造函数初始化列表中初始化基类的数据成员?

派生类的构造函数与析构函数的调用顺序

C++基类和派生类的构造函数

c ++是不是可以在不基于其基类的派生类中创建构造函数?