首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Instrument{ public: Instrument
有如下程序: #include #include using namespace std; class Instrument{ public: Instrument
admin
2021-05-06
65
问题
有如下程序:
#include
#include
using namespace std;
class Instrument{
public:
Instrument(string t="乐器",string n="无名"):type(t),name(n) { }
virtual string GetType() const { return "乐器"; }
string GetName() const { return "无名"; }
protected:
string type,name;
};
class Piano:public Instrument{
public:
Piano(string n,string t="钢琴"):Instrument(t,n) { }
string GetType() const { return "钢琴"; }
string GetName() const { return name; }
};
int main(){
Instrument *pi=new Piano("星空");
cout<
GetType()<<’-’<
GetName();
delete pi;
return 0;
}
运行时的输出结果是
选项
A、乐器-星空
B、乐器-无名
C、钢琴-星空
D、钢琴-无名
答案
D
解析
本题考查虚函数的运用,本题中基类Instrument,派生类Piano,其中虚函数为GetType,当定义Instrument *pi=new Piano("星空")时,调用派生类的GetType函数,得到type为钢琴,执行GetName时只能执行基类的这个函数,输出无名,所以输出钢琴-无名。选项D正确。
转载请注明原文地址:https://kaotiyun.com/show/HFfp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下列有关继承和派生的叙述中,正确的是()。
使用VC6打开考生文件夹下的源程序文件modi2.cpp。阅读下列函数说明和代码,补充空出的代码。函数DecToBin(char*des,intn)的功能是将十进制数据n转换成二进制数据,并将转换结果存放在des中。如:120的二进制数据为11
下列关于类成员对象构造函数调用顺序的叙述中,正确的是()。
若有函数模板mySwap和一些变量定义如下:()。template<classT>voidmySwap(Tx,Ty);doubled1,d2;inti1,i2;下列对mySwap的调用中,错误的是
下列关于虚函数的说明中,正确的是()。
对关系S和关系R进行集合运算,结果中既包含关系S中的所有元组也包含关系R中的所有元组,这样的集合运算称为()。
下面对软件测试描述错误的是
下面属于应用软件的是()。
下列选项中不属于软件生命周期开发阶段任务的是()。
在数据库中,产生数据不一致的根本原因是
随机试题
当归补血汤的主治证候中没有
A、选择性偏倚B、无应答偏倚C、测量偏倚D、回忆偏倚E、检查者偏倚受检者由于主观或客观原因未能接受检查的偏倚是
铺轨机铺轨后,地面轨排(),吊起的铺轨排不得伸出铺轨机。
某高层办公楼的柴油发电机房设置了水喷雾灭火系统。该系统水雾喷头的灭火工作压力不应小于()MPa。
函数y=f(x)的图象与y=3x2+2x-1的图象关于原点对称,则y=f(x)的函数解析式为()。
强迫症【华南师范大学2016;湖南师范大学2016】
Weoftentendtoassociatesmilingastheresultofapositiveeventormood.Butresearchdemonstratesthattheactofsmiling,
Withinhoursofappearingontelevisiontoannouncetheendofconscription,PresidentJacquesChiracmovedquicklytopreventa
Whatistheexpectedannualgrowthrateofthesevenleadingindustrializedeconomiesinthesecondhalfoftheyear?
______________(请随时与我联系)ifyouneedanyfurtherinformation.
最新回复
(
0
)