自考新教材-p271_1
Posted duanqibo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p271_1相关的知识,希望对你有一定的参考价值。
源程序:
#include <iostream>
using namespace std;
class A
{
public:
int i;
virtual void func()
{
cout << "A0" << endl;
}
virtual void func2()
{
cout << "A1" << endl;
}
virtual void func3()
{
cout << "A3" << endl;
}
};
class B :public A
{
int j;
void func()
{
cout << "B0" << endl;
}
void func3()
{
cout << "B3" << endl;
}
};
int main()
{
A *a;
B b;
a = &b;
a->func();
a->func3();
system("pause");
return 1;
}
运行结果:
以上是关于自考新教材-p271_1的主要内容,如果未能解决你的问题,请参考以下文章