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

你。 提交于 2020-03-07 21:39:59
派生类构造函数各部分的执行次序为
1.调用基类的构造函数,按他们在派生类定义的先后顺序,顺序调用。
2.调用成员对象的构造函数,按他们在类定义中声明的先后顺序,顺序调用
3.派生类的构造函数体中的操作
在派生类构造函数中,只要基类不是使用缺省构造函数,都要显式给出基类名和参数表
如果基类没有定义构造函数,则派生类也可以不定义,全部采用系统给定的缺省构造函数。
如果基类定义了带有形参表的构造函数时,派生类就应当定义构造函数。
//Test1.h
#include<iostream>
using namespace std;
class Base1
{
private:
    int a1;
public:
    Base1()//(int _a):a1(_a)
    {
        cout<<"It's base1 built. "<<endl;
    }
    ~Base1(){cout<<"Base1 was free. "<<endl;}
};
class Base2
{
private:
    int a2;
public:
    Base2()//(int _a):a2(_a)
    {
        cout<<"It's base2 built. "<<endl;
    }
    ~Base2(){cout<<"Base2 was free. "<<endl;}
};
class Base3
{
private:
    int a3;
public:
    Base3()//(int _a):a3(_a)
    {
        cout<<"It's base3 built. "<<endl;
    }
    ~Base3(){cout<<"Base3 was free. "<<endl;}
};
class Son : public Base2,public Base1,public Base3//1.调用基类的构造函数,按他们在派生类定义的先后顺序,顺序调用。
{     
private://2.调用成员对象的构造函数,按他们在类定义中声明的先后顺序,顺序调用
    Base1 a;
    Base3 b;
    Base2 c;
public:
    Son()//:Base1(_a),Base2(_a),Base3(_a),a(_a),b(_a),c(_a)
    {
        cout<<"It's son built. "<<endl;//3.派生类的构造函数体中的操作
    }
    ~Son(){cout<<"Son was free. "<<endl;}
};
将父类和派生类构造函数后的“//”去掉便是在派生类构造函数中,只要基类不是使用缺省构造函数,都要显式给出基类名和参数表所描述的意思。

 

//Test.cpp#include"Test1.h"
void main()
{
    Son son;//son(10)
}

由Son类可以看出构造函数的顺序应该为2,1,3,1,3,2,son

运行结果

析构函数和构造函数顺序相反。

 

父类构造含参调用规则

https://www.cnblogs.com/bonelee/p/5825885.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!