首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Instrument{ public: Instrument
有如下程序: #include #include using namespace std; class Instrument{ public: Instrument
admin
2020-05-14
16
问题
有如下程序:
#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=newPiano("星空")时,调用派生类的GetType函数,得到type为钢琴,执行GetName时只能执行基类的这个函数,输出无名,所以输出钢琴-无名。选项D正确。
转载请注明原文地址:https://kaotiyun.com/show/Iv8p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下列程序的输出结果是______。#include<iostream>usingnamespacestd;voidfun(int&rf){rf*2;}intmain(){intnum
在关系数据库中,把数据表示成二维表,每一个二维表称为【】。
根据下面的程序,可以在主程序中使用的合法语句是( )。 #include <iostream> using namespace std; class Person{ int age; public:
下列语句中不是死循环的是
重载赋值操作符时,应声明为()。函数。
以下程序的输出是()。structst{intx;int*y;}*p;intdt[4]={10,20,30,40};structst
不合法的main函数命令行参数表示形式是()。
在计算机软件系统的体系结构中,数据库管理系统位于用户和【】之间。
数据模型分为格式化模型与非格式化模型,层次模型与网状模型属于【】。
对于浯句cout<<end1<<x;中的各个组成部分,下列叙述中错误的是()。
随机试题
我国数字出版产业主要包括()等。
下列相当于贸易折扣的是()
高层建筑的给水系统和热水系统必须进行合理的竖向分区并加设()。
下列关于合同债权转让的叙述中,有误的一项是()。
我国现行企业会计制度规定,公司的短期投资期末计价应采用的计价方法为()。
“子非鱼,安知鱼乐。”、“子亦非鱼,安知鱼之非乐。”下面()与上文的对话最为类似。
你值班。局长不在。有人篡改你单位惠农还是什么信息.网上又有人跟帖甚至故意诋毁.你怎么办?
职业精神与人们的职业活动紧密联系,是具有自身职业特征的精神。我国公务员职业精神的本质是()。
[A]Filmschoolsandfilmdirectingschoolsprovideaspiringfilmstudentswithasolidunderstandingofthemanyfacetsofthef
A、Itssentencesarebeautifullywritten.B、Ittouchesmanyaspects.C、Itbelongstosciencefiction.D、Itisabookabouthistor
最新回复
(
0
)