首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
admin
2015-07-22
28
问题
有如下程序:
#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
答案
A
解析
本题考查虚函数的运用,本题中定义Dog d; Type(d)时,执行类class的Type函数,输出Dog,然后输出speak,然后执行派生类的Speak函数输出Voice,最后输出-,同理cat输出类似,所以结果为B选项正确。
转载请注明原文地址:https://kaotiyun.com/show/EuNp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
数据库保护分为安全性控制、【】、并发性控制和数据的恢复。
执行语句序列ofstreamoutfile("DATA.DAT");if(...)cout<<"OK";elsecout<<"FAIL";后,如果文件打开成功,显示"OK",否则就显示"FAIL"。由此可知,上面if语句的...
关于动态存储分配,下列说法正确的是______。
若有说明:ints[3][4]={0}则下面叙述正确的()。
假设inta=1,b=2;,则表达式(++a/b)*b--的值为【】。
所有在函数中定义的变量,连同形式参数,都属于
请定义一个函数名为A,返回值为int,没有参数的纯虚函数的定义是【】。
已知类Myst有一个只需要一个double型参数的构造函数,且将运算符“-”重载为友元函数。要使语句序列Mystx(3.2),y(5.5),z(0.0);z=8.9-y;y=x-6.3;能够正常运行,运算符函数operat
【】是实现C++语言编译时多态性的机制,【】是实现C++语言运行时多态性的机制。
在结构化方法中,用数据流程图(DFD)作为描述工具的软件开发阶段是______.
随机试题
当归补血汤的主治证候中没有
A、选择性偏倚B、无应答偏倚C、测量偏倚D、回忆偏倚E、检查者偏倚受检者由于主观或客观原因未能接受检查的偏倚是
铺轨机铺轨后,地面轨排(),吊起的铺轨排不得伸出铺轨机。
某高层办公楼的柴油发电机房设置了水喷雾灭火系统。该系统水雾喷头的灭火工作压力不应小于()MPa。
函数y=f(x)的图象与y=3x2+2x-1的图象关于原点对称,则y=f(x)的函数解析式为()。
强迫症【华南师范大学2016;湖南师范大学2016】
Weoftentendtoassociatesmilingastheresultofapositiveeventormood.Butresearchdemonstratesthattheactofsmiling,
Withinhoursofappearingontelevisiontoannouncetheendofconscription,PresidentJacquesChiracmovedquicklytopreventa
Whatistheexpectedannualgrowthrateofthesevenleadingindustrializedeconomiesinthesecondhalfoftheyear?
______________(请随时与我联系)ifyouneedanyfurtherinformation.
最新回复
(
0
)