首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
admin
2015-07-22
35
问题
有如下程序:
#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://jikaoti.com/ti/nPE0FFFM
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
在类的对象被创建的时候,【 】函数会被自动调用。
已知函数f的原形是voidf(int*a,long&B);,变量v1、v2的定义是:intv1;longv2;下列调用语句中正确的是
下列有关类继承的叙述中,错误的是
有如下程序:#include<iostream>usingnamespacestd;classPet{charname[10];public:Pet(char*name){st
有3个关系R、S和T如下:由关系R和S通过运算得到关系T,则所使用的运算为( )。
数据库保护分为安全性控制、【】、并发性控制和数据的恢复。
假定MyClass为一个类,则该类的拷贝初始化构造函数的声明语句为()。
关于虚函数下面说的正确的是()。
数据库、数据库系统和数据库管理系统之间的关系是()。
设树T的度为4,其中度为1,2,3,4的节点个数分别为4,2,1,1。则T中叶子节点数为()。
随机试题
Thenumberofpermanentstaffis________.
实体完整性规则要求关系中主键值不能为______。
将函数f(x)=展开为(x-1)的幂级数,并写出其收敛域.
闭路电视监控系统中,当传输距离较远时宜采用()传输信号。
光学水准仪在机电设备安装中主要用于()等。
Word中选定表格的某一行,再从“编辑”菜单中选择“清除”命令(或按Del键)将()。
甲某购买了某公司的股票1000股,每股票面金额32元,预期每年可以获得6.0%的股息,而当时银行存款的利息率为3.0%。如果没有其他因素的影响,一年后甲某购买的1000股股票的价格是()元。
一个实心立体图形如图所示从中挖掉一个圆柱体,然后从任意面剖开,下面哪一项不可能是该立体图形的截面?
MaryandIbought______someoranges.
Theygotooneoftheworld’smostprestigiousuniversitiesandpridethemselvesontheirsuperiorintellectbutalmosthalfof
最新回复
(
0
)