首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
admin
2020-05-14
25
问题
有如下程序:
#include
#include
using namespace std;
class Animal{
public:
virtual string GetType() const { return "Animal"; }
virtual string GetVoice() const { return "Voice"; }
};
class Dog:public Animal{
public:
string GetType() const { return "Dog"; }
string GetVoice() const { return "Woof"; }
};
class Cat:public Animal{
public:
string GetType() const { return "Cat"; }
string GetVoice() const { return "Miaow"; }
};
void Type(Animal& a) { cout<
void Speak(Animal& a) { cout<
int main() {
Dog d; Type(d); cout<<" speak "; Speak(d); cout<<" - ";
Cat c; Type(c); cout<<" speak "; Speak(c); cout<
return 0;
}
运行时的输出结果是
选项
A、Dog speak Voice - Cat speak Voice
B、Dog speak Woof - Cat speak Miaow
C、Animal speak Voice - Animal speak Voice
D、Animal speak Woof - Animal speak Miaow
答案
B
解析
本题考查虚函数的运用,本题中定义Dog d; Type(d)时,执行类class的Type函数,输出Dog,然后输出speak,然后执行派生类的Speak函数输出Voice,最后输出-,同理cat输出类似,所以结果为B选项正确。
转载请注明原文地址:https://kaotiyun.com/show/mq8p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序:classXX{protected:intk;public:XX(int=5):k(n){};~XX(){tout
如果表达式y*x++中,“*”是作为成员函数重载的运算符,“++”是作为友元函数重载的运算符,采用运算符函数调用格式,该表达式还可表示为
有如下类声明:class1.estClass1{intk:public:voidset(intn){k=n;}intget()const{returnk;}};
请指出程序片段的语法错误______。
如果表达式x=y*z中的“*”是作为成员函数重的运算符,采用运算符函数调用格式,该表达式还可以表示为______。
下述关于数据库系统的叙述中正确的是
关于动态联编的下列叙述中,______是错误的。
下列有关函数重载的叙述中,错误的是
随机试题
有关骨肉瘤的主要诊断依据,错误的是
280nm波长处有吸收峰的氨基酸为
为外阴阴道假丝酵母菌病病人做阴道灌洗,宜选择的药液是
护士对肺结核患者进行病情观察时,发现下列何种情况提示病情较重
按计划标准衡量所取得的结果,纠正发生的偏差,最终实现工程项目目标的管理过程称作()
依据委托监理合同示范文本的规定,正常监理酬金由()等构成。
测量不确定度的来源包括()。
国际政治中的族际斗争不是谁是谁非的问题,而是独一无二的种族归属感与难以兼容的各种族自决梦想之间的冲突。种族归属感是客观存在的,但西方多年来倡导的民族自决原则在很大程度上鼓励了这种归属感发展成为一种力图建立独立国家的民族意识。因此( )。
设二次型f(x1,x2,x3)=a(x12+x22+x32)+2x1x2+2x2x3+2x1x3的正负惯性指数分别为1,2,则()
Althoughinteriordesignhasexistedsincethebeginningofarchitecture,itsdevelopmentintoaspecializedfieldisreallyqui
最新回复
(
0
)