首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Instrument{ public: Instrument(string t,string n):ty
有如下程序: #include #include using namespace std; class Instrument{ public: Instrument(string t,string n):ty
admin
2020-06-29
32
问题
有如下程序:
#include
#include
using namespace std;
class Instrument{
public:
Instrument(string t,string n):type(t),name(n){}
virtual string GetType()const{return type;}
virtual string GetName()const{return name;}
protected:
string type,name;
};
class Piano:public Instrument{
public:
Piano(string n=’’AB’’,string t=’’CD’’):Instrument(n,t){}
string GetType()const{return’’WX’’;}
string GetName()const{return’’YZ’’;}
};
int main(){
Instrument*pi=new Piano();
cout<
GetType()<<’-’<
GetName()<
delete pi;
return 0;
}
运行时的输出结果是( )。
选项
A、WX-AB
B、YZ-WX
C、WX-CD
D、WX-YZ
答案
D
解析
基类指针pi指向的是派生类Pi-ano的对象,另外GetType与GetName都是虚函数,所以语句pi->GetType()与pi->GetName()满足动态联编的条件,运行时会调用pi所指向对象的成员函数,所以pi->GetType()调用派生类Piano的成员函数,输出WX,pi->GetName()调用派生类Piano的成员函数,输出YZ,答案为D选项。
转载请注明原文地址:https://kaotiyun.com/show/xi8p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下列关于类概念的描述中,错误的是()。
下列关于C++运算符结合性的说法中,错误的是()。
以下4个程序中,不能实现两个实参值进行交换的是()。
下图所示的二叉树的先序遍历序列是【】。
有如下说明inta[10]={1,2,3,4,5,6,7,8,9,10},*p=a;则数值为9的表达式是
一棵二叉树中共有70个叶子结点与80个度为1的结点,则该二叉树中的总结点数
友元类的所有成员函数都是另一个类的【】。
下列运算符不能重载为友元函数的是()。
已知将运算符“+”和“*”作为类Complex的成员函数重载,设cl和c2是类Complex的对象,则表达式c1+c2*cl等价于()。
下面描述中不属于软件需求分析阶段任务的是
随机试题
不会发生排斥反应的移檀是()
A.系膜细胞及系膜基质增生B.系膜细胞及内皮细胞增生C.壁层上皮细胞及巨噬细胞增生D.脏层上皮细胞及巨噬细胞增生毛细血管内增生性肾小球肾炎的病变特点是
关于像素的叙述,正确的是
A.戊二醛B.次氯酸钠溶液C.碘伏D.合成酚E.酒精
契税实行3%~5%的幅度比例税率,自2008年11月1日起,对个人首次购买90m2及以下普通住房的,契税税率暂统一下调到()。
关于行政事业单位资产业务的会计处理,下列表述中错误的是()。
Taiwanlies______theeastofFujianandislargerthan______islandinChina.
意识是社会的人所特有的精神活动及其成果的总和。()
Beforedecidingtolitigatethematter,theyhadtriedtonegotiateasolutionoutofcourt.
•ReadthearticlebelowaboutMcDonald’shamburgerandAustralianeconomy.•Choosethecorrectwordtofilleachgap,fromA
最新回复
(
0
)