首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
admin
2021-09-05
27
问题
有如下程序:
#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://jikaoti.com/ti/30h0FFFM
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序:#include<iostream>usingnamespacestd;classA{public:A(inti){x=i;}voiddispa,(){cout<<x<<
下列语句中,错误的是()。
除了显式定义的构造函数外,类中还有可能包含编译器自动生成的构造函数,因此一个类所拥有的构造函数的至少有
软件测试的目的是()。
以下叙述正确的是()。
在C++语言中函数返回值的类型是由()决定的。
下列运算符中,可以重载为类的友元函数的运算符是
下列有关内联函数的叙述中,正确的是()。
请打开考生文件夹下的解决方案文件proj3,其中声明的DataList类,是一个用于表示数据表的类。DataList的重载运算符函数operator+,其功能是求当前数据表与另一个相同长度的数据表之和;即它返回一个数据表,其每个元素等于相应两个数据表对应元
关于运算符重载,下列表述中正确的是()。
随机试题
沙眼衣原体是引起人类沙眼的病原体,也是引起非淋菌性尿道炎最常见的病原体。()
简述收集原始资料过程中存在的问题。
Mary’sprofessorhadher______papermanytimesbeforeallowinghertopresentittothecommittee.
阴茎再造术的主要内容是指
A、意外露髓B、充填体脱落C、继发龋D、乳牙内吸收E、充填体过高直接盖髓术的适应证是;
依据《规划环评条例》,环境影响评价文件由()编制或者组织规划环境影响评价技术机构编制。规划编制机关应当对环境影响评价文件的质量负责。
有一幼儿园,其耐火等级为三级,该幼儿园内设置了自动喷水灭火系统。已知托儿所、幼儿园类建筑一、二级和三级耐火等级位于两个安全出口之间的疏散门至最近安全出口的最大距离分别为25m和20m。该幼儿园位于两个安全出口之间的疏散门至最近安全出口的最大距离应为(
About50yearsagotheideaofdisabledpeopledoingsportswasneverheardof.Butwhentheannualgamesforthedisabledwere
AboutWetlandsintheU.S.A.Peopleenjoyafamoussoup(SHE-CRABSOUP)inNorthCarolinabecausethedaysoftheregionalsoup
She’sabitdowninthedumpsbecauseshehastotakeherexamsagain.Theunderlinedphrasemeans______.
最新回复
(
0
)