首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
admin
2015-07-22
31
问题
有如下程序:
#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/xrNp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
以下程序输出的结果是【】。#include<iostream.h>voidmain(){inta=5,b=4,c=3,d;d=(a>b>C);
当输入“Thankyou”时下列程序的输出结果为()。#include<iostream.h>#include<iomanip.h>voidmain(){charli
有如下定义语句:inta[]={1,2,3,4,5};,则对语句int*p=a;正确的描述是()。
通常的拷贝初始化构造函数的参数是()。
进行文件操作需包含的头文件是()。
下面的叙述中,不符合赋值兼容规则的是()。
当使用ifstream流类定义一个流对象并打开一个磁盘文件时,文件的隐含打开方式是()。
下面是关于ios类的叙述,正确的是()。
下面关于C++语言变量的叙述错误的是
下列叙述中正确的是
随机试题
下列哪一项是矫形鞋的基本作用
蔬菜不正确的烹调加工方法是
投资基金的风险主要有以下的哪些风险()①系统性风险;②非系统性风险;③流动性风险;④管理风险;⑤系统运作风险;⑥经营风险
公募拍卖法主要适用于( )。
关于消费税的说法,错误的是()。
群体决策的优点包括()。
简述心理评估的意义。
创新发展的思维策略所包含的要素有__________、思维方法和__________。
党的十八大强调必须树立尊重自然,顺应自然、保护自然的生态文明理念,这体现的哲理有()。
求解微分方程.
最新回复
(
0
)