一
#include<iostream>
using namespace std;
class father
{
public:father(){cout << "father无参构造函数" << endl;}father(int x):fa(x){cout << "father单参构造函数" << endl;}~father() {cout << "father析构函数" << endl;}int fa;
protected:int fb;
private:int fc;
};
class son:public father
{
public:son(int x):sa(x){cout << "son单参构造函数" << endl;}~son(){cout << "son析构函数" << endl;}int sa;
protected:int sb;
private:int sc;
};
int main()
{son s1(0);
}
二,
1,若在设计程序时,基类和派生类均未设计拷贝构造函数,C++编译器将自动产生按位拷贝的拷贝构造函数 // 0 0
2,若基类有拷贝函数,派生类没有函数,将在派生类中生成按位拷贝的拷贝构造函数 // 1 0
3,若在基类和派生类均设计了拷贝函数,在派生类中没有指明基类构造函数类型时,使用缺省的拷贝函数,若没有缺省函数,编译错误 // 1 1
4,若在基类未设计拷贝构造函数,派生类设计了,在派生类中没有指明基类构造函数类型时,使用缺省的拷贝函数,若没有缺省函数,编译错误 // 0 1