高等继续教育 / 面向对象程序设计
正确率:推荐%
题型描述: 简答题
写出下列程序的输出结果。
写出下列程序的输出结果。
#include<iostream>
using namespace std;
class AA{
public :
AA(){cout<<"ConstructorofAA.\n";fun( );}
virtual void fun( ){cout<<"AA::fun( )is called.\n";}
};
class BB:public AA{
public :
BB( ){cout<<"Constructor of BB.\n"; fun( );}
void fun( ){cout<<"BB::fun( )is called.\n";}
};
int main( ){BB d; return 0;}
参考答案:
佳题速递: