首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Instrument{ public: Instrument
有如下程序: #include #include using namespace std; class Instrument{ public: Instrument
admin
2015-07-22
23
问题
有如下程序:
#include
#include
using namespace std;
class Instrument{
public:
Instrument(string t="乐器",string n="无名"):type(t),name(n) { }
virtual string GetType() const { return "乐器"; }
virtual 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、乐器-无名
答案
A
解析
本题考查虚函数的运用,本题中基类Instrument,派生类Piano,其中虚函数为GetType,当定义Instrument *pi=new Piano("星空")时,调用派生类的GetType函数,得到type为钢琴,name为星空,所以输出钢琴-星空。选项A正确。
转载请注明原文地址:https://kaotiyun.com/show/5tNp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下列各个选项中对字符数组赋字符串的语句中,错误的是()。
若源程序文件abc.cpp中只有一个函数,该函数的名称为【】。
下面程序的输出结果是【】。#include<iostream>usingnamespacestd;intd=1;fun(intp){staticintd=5;d+=p;
从数据库中获取数据称为()。
要定义数组A,使得其中每个元素的数据依次为:3、9、4、8、0、0、0,错误的定义语句是
下面程序的运行结果是#include<iostream.h>classbase{protected:inta;public:base(){cout<<"0";}};
请将下列类定义补充完整。classBase{public:voidfun(){cout<<"Base::fun"<<end;}};classDerived:publicBase{public:void
非成员函数应声明为类的【 】函数才能访问这个类的private成员。
面向对象程序设计将数据和什么放在一起,作为一个相互依存、不可分割的整体来处理?
如下类定义中包含了构造函数和拷贝构造函数的原型声明,请在横线处填写正确的内容,使拷贝构造函数的声明完整。ClassmyClass{private:intdata;public:myClass(intvalue);//构造函数
随机试题
PASSAGETHREEWhatdoes"Croque-mitaineorLoup-garou"refertoinPara.12?
中风中经络属络脉空虚,风邪人中者,治疗时宜选
血小板的a颗粒中主要含有
附条件合同所附的条件应满足的条件不包括()。
中国古代将孔子尊为“文圣”,将孙子尊为“武圣”。( )
下列不属于送别诗句的一项是()。
如图所示,在3×3方格内填入恰当的数后,可使每行、每列以及两条对角线上的三个数的和都相等。问方格表内“x”的值是多少?()
一、注意事项1.申论考试是对应考者阅读理解能力、综合分析能力、提出和解决问题能力、文字表达能力的测试。2.作答参考时限:阅读资料40分钟,作答110分钟。3.仔细阅读给定资料,按照后面提出的“申论要求”依次作答。二、给定资料
负责数据库中查询操作的数据库语言是( )。
InterpretthefollowingpassagesfromChineseintoEnglish.Startinterpretingatthesignalandstopatthesignal.Youmaytak
最新回复
(
0
)