自考新教材-p240_2

Posted duanqibo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p240_2相关的知识,希望对你有一定的参考价值。

源程序:

#include <iostream>
using namespace std;

class Base
{
private:
int radius, width;
public:
Base()
{
cout << "Base默认构造函数" << endl;
}
Base(int r, int w) :radius(r), width(w)
{
cout << "Base带2个参数的构造函数" << endl;
}
~Base()
{
cout << "Base析构函数" << endl;
}
};

class D_Base
{
private:
int price;
Base ty;
public:
D_Base()
{
cout << "D_Base默认构造函数" << endl;
}
D_Base(int p, int tr, int w) :price(p), ty(tr, w)
{
cout << "D_Base带3个参数的构造函数" << endl;
}
~D_Base()
{
cout << "D_Base析构函数" << endl;
}
};

int main()
{
D_Base();
D_Base db(1,2,3);
system("pause");
return 1;
}

运行结果:

技术图片

 

以上是关于自考新教材-p240_2的主要内容,如果未能解决你的问题,请参考以下文章

自考新教材-p272_2

自考新教材-p279_2

自考新教材-p350_2

自考新教材-p352_2

自考新教材-p58_3

自考新教材-p350_3