自考新教材-p238_1

Posted duanqibo

tags:

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

源程序:

#include <iostream>
using namespace std;

class CBase
{
protected:
int n;
public:
CBase(int i) :n(i) {}
void Print()
{
cout << "CBase:n=" << n << endl;
}
};

class CDerived :public CBase
{
public:
int v;
CDerived(int i) :CBase(i), v(2 * i) {}
void Func() {};
void Print()
{
cout << "CDerived:n=" << n << endl;
cout << "CDerived:v=" << v << endl;
}
};

int main()
{
CDerived objDerived(3);
CBase objBase(5);
CBase *pBase = &objDerived;

CDerived *pDerived;
pDerived = &objDerived;
cout << "使用派生类指针pDerived调用函数Print()" << endl;
pDerived->Print(); //调用的是派生类中的函数

cout << "使用基类指针pBase调用函数Print()" << endl;
pBase = pDerived;
pBase->Print(); //调用的是基类中的函数

cout << "使用派生类指针调用函数" << endl;
pDerived->Print(); //调用的是派生类中的函数
system("pause");
return 1;

}

运行结果:

技术图片

 

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

自考新教材-p352_1

自考新教材-p279_1

自考新教材-p350_3

自考新教材-p176_5

自考新教材-p90_5

自考新教材-p326_3