自考新教材-p214
Posted duanqibo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p214相关的知识,希望对你有一定的参考价值。
派生类中的复制构造函数
源程序:
#include<iostream>
using namespace std;
class A
{
public:
A() //默认构造函数
{
i=100;
cout<<"类A默认构造函数"<<endl;
}
A(const A&s) //复制构造函数
{
i=s.i;
cout<<"类A复制构造函数"<<endl;
}
int getValue(); //取值
void setValue(int); //设置值
private:
int i;
};
int A::getValue()
{
return i;
}
void A::setValue(int k)
{
i=k;
}
class B:public A //公有派生类
{
private:
float f;
public:
B()
{
f=20.1;
cout<<"类B默认构造函数"<<endl;
}
B(const B &v):A::A(v),f(v.f)
{
cout<<"类B复制构造函数"<<endl;
}
float getValue();
int getValue1()
{
return A::getValue();
}
};
float B::getValue() //重写基类函数,改变了返回值类型
{
return f;
}
int main()
{
A a; //调用类A默认构造函数
B b; //调用类A默认构造函数、类B默认构造函数
B bb(b); //调用类A复制构造函数、类B复制构造函数
return 0;
}
运行结果:
以上是关于自考新教材-p214的主要内容,如果未能解决你的问题,请参考以下文章