自考新教材-p272_3

Posted duanqibo

tags:

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

源程序:

#include <iostream>
using namespace std;

class Base
{
public:
virtual void display() = 0;

};
class Derived1 :public Base
{
public:
void display()
{
cout << "Derived1 called" << endl;
}
};

class Derived2 :public Base
{
public:
void display()
{
cout << "Derived2 called" << endl;
}
};

void fun(Base *p)
{
p->display();
}

int main()
{
Derived1 b1;
Derived2 b2;
Base *p = &b1;
fun(p);
p = &b2;
fun(p);
system("pause");
return 1;
}

 

运行结果:

技术图片

 

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

自考新教材-p173_3

自考新教材-p58_3

自考新教材-p142_3

自考新教材-p58_3

自考新教材-p326_3

自考新教材-p58_3