为什么子类的构造函数中会出现在初始化列表中呢?原因在于子类能够从基类集成的内容限制上。
我们知道,一个派生类继承了所有的基类方法,但下列情况除外:
- 基类的构造函数、析构函数和拷贝构造函数。
- 基类的重载运算符。
- 基类的友元函数。
因此,我们不能够在子类的成员函数体中调用基类的构造函数来为成员变量进行初始化。例如这样子是不可以的
#include<iostream>
usingnamespace std;
// 基类
classShape
{
public:
Shape(int w,int h)
{
width=w;
height=h;
}
protected:
int width;
int height;
};
// 派生类
classRectangle:publicShape
{
public:
Rectangle(int a,int b)
{
Shape(a,b);
}
};