首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Instrument{ public: Instrument(string t=“乐器”,string n=“无名”):type(t),le(n){}
有如下程序: #include #include using namespace std; class Instrument{ public: Instrument(string t=“乐器”,string n=“无名”):type(t),le(n){}
admin
2016-07-13
22
问题
有如下程序:
#include
#include
using namespace std;
class Instrument{
public:
Instrument(string t=“乐器”,string n=“无名”):type(t),le(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~tName()const{return nanle;}
};
int main(){
Itment*pi=new Piano(“星空”);
cout<
GetType()<<‘一’<
~tName();
delete pi;
return 0;
}
运行时的输出结果是( )。
选项
A、钢琴一星空
B、钢琴一无名
C、乐器一星空
D、乐器一无名
答案
A
解析
本题考查虚函数的运用,本题中基类Instrument,派生类Piano,其中虚函数为GetType,当定义Instrument*pi=new Piano(”星空”)时,调用派生类的GetType函数,得到type为钢琴,name为星空,所以输出钢琴一星空。选项A正确。
转载请注明原文地址:https://kaotiyun.com/show/3iNp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
关于友元的概念错误的是
假定用户没有给一个名为MyClass的类定义析构函数,则系统为其定义的默认析构函数首部形式为【】。
设有n元关系R及m元关系S,则关系R与S经笛卡儿积后所得新关系是一个()元关系。
以下程序运行后的输出结果是【】。#include<iostream>#include<string>usingnamespacestd;classY;classX{intx;
面向对象程序设计支持的3大特性为:封装性、继承性和【】。
以下叙述中不正确的是()。
在选择运算所得到的结果关系中,所含的元组数不合【】原关系中的元组数。
下列叙述中,正确的是()。
定义如下枚举类型:enumNumber{one=1,tow=2,four=4,eight=8},则下列语句正确的是()。
随机试题
Myopinionisasgood______.
A.抗SSA抗体B.抗Sm抗体C.抗磷脂抗体D.抗dsDNA抗体E.抗RNP抗体与系统红斑狼疮疾病活动性密切相关的自身抗体是
下列说法正确的有()。
证券经纪人在执业过程中,不可以从事的活动有()。Ⅰ.为客户之间的融资提供中介、担保或者其他便利Ⅱ.替客户办理账户开立、注销、转移等Ⅲ.替客户办理证券认购、交易或者资金存取、划转、查询等Ⅳ.向客户传递由证券公司统一提供的研究报告
组织市场的类型不包括()。
社会管理职能是警察的主要职能。()
虚假同感偏差又称“虚假一致性偏差”,指的是人们常常会高估或夸大自己的信念、判断及行为的普遍性。当遇到与此相冲突的信息时,这种偏差使人坚持自己的社会知觉。根据上述定义,下列不属于虚假同感偏差的是:
EveryyeartheaverageAmericanemployeeworks100hoursmorethanBriton,300hoursmorethanFrenchand400hoursmorethanGe
AShortHistoryoftheOriginsandDevelopmentofEnglishI.Origins—datedbackto【T1】______ofthreeGermanictribes:【T1】____
Pub-talkA)Pub-talk,themostpopularactivityinallpubs,isanativedialectwithitsowndistinctivegrammar.Thereare
最新回复
(
0
)