首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
admin
2020-06-29
20
问题
有如下程序:
#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
答案
D
解析
本题考查虚函数的运用,本题中定义Dog d; Type(d)时,执行基类的Type函数,输出Animal,然后输出speak,然后执行派生类的Speak函数输出Woof,最后输出-,同理cat输出类似,所以结果为D选项正确。
转载请注明原文地址:https://kaotiyun.com/show/3syp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下面是一个模板声明的开始部分:templatedouble…由此可知()。
若有函数原型声明为"voidfun(int*x,int&y,intz=3);",下列叙述中,错误的是
有如下程序:#includeusingnamespacestd;classtest{private:inta;public:test(){cout
if语句的语法格式可描述为:格式1:if()或格式2:if()else关于上面的语法格式,下列表述中错误的是()。
请使用VC6或使用【答题】菜单打开考生文件夹proj3下的工程prog3,其中声明了MyString类。MyString是一个用于表示字符串的类。成员函数startsWith的功能是判断此字符串是否以指定的前缀开始,其参数8用于指定前缀字符串。如果参数s表
下列关于运算符重载的表述中,错误的是
下列关于内联函数的叙述中,错误的是
下列关于运算符重载的描述中,正确的是()。
将E-R图转换为关系模式时,实体和联系都可以表示为( )。
有两个关系R和T如下:则由关系R得到关系T的操作是( )。
随机试题
A、①B、②C、③D、④D
杜甫诗歌的风格是()
治疗郁证日久,阴虚火旺者,应首选
某建筑内上下层相连通的中庭,其连通部位的顶棚、墙面装修材料燃烧等级为()级。
下列关于CIFA标准交易条件所制定的规定,正确的有()。
委托代理终止的情形包括()。
赵某因犯罪行为被判处管制一年的刑罚,在此期间,不属于赵某应当遵守的规定是()。
根据下列材料回答问题。2003年一2007年五年粮食平均产量为()。
1939年,毛泽东在《〈共产党〉人发刊词》一文中,总结了中国革命两次胜利和两次失败的经验教训,指出中国革命的基本特点和战胜敌人的基本武器是()
MusicalTrainingCanImproveCommunicationSkillsAmericanscientistssaymusicaltrainingseemstoimprovecommunicationsk
最新回复
(
0
)