首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
有如下程序: #include #include using namespace std; class Animal{ public: virtual string
admin
2015-07-22
39
问题
有如下程序:
#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全国计算机二级
相关试题推荐
在公有派生的情况下,派生类中定义的成员函数只能访问原基类的______。
已知程序中已经定义了函数test,其原型是inttest(int,int,int);,则下列重载形式中正确的是______。
已知:intm=10;在下列定义引用的语句中,正确的是______。
如果要把返回值为void的函数A声明为类B的友元函数,则应在类B的定义中加入的语句是【】。
当输入“Thankyou”时下列程序的输出结果为()。#include<iostream.h>#include<iomanip.h>voidmain(){charli
一个类的友元函数能够访问该类的()。
有关构造函数的说法不正确的是()。
下面的叙述中,不符合赋值兼容规则的是()。
关于continue语句叙述不正确的是
下面是关于ios类的叙述,正确的是()。
随机试题
在进行立焊、仰焊时应选择小的焊接电流。()
悬浮式二灰粒料的特点是()。
政府采购通常被称为阳光工程,这说明政府采购具备的功能是()。
对送股的股权登记、增加某股东股数的计算依据是( )。
陈某用自己的轿车作抵押向银行借款40万元,并办理抵押登记手续。陈某驾驶该车出行时,不慎发生交通事故。经鉴定,该车的价值损失了30%。保险公司赔偿了该车损失。下列关于该抵押担保的表述中,正确的有()。
下列属于民事权利公力救济方式的是
结合材料,回答问题:材料11999年3月25日一6月10日,以美国为首的北约以南斯拉夫联盟共和国科索沃省出现“人道主义灾难”为借口,未经联合国授权便以“国际社会”的名义对一个主权国家进行了为期78天的空袭,世人称之为科索沃战争。南联盟最
设无向树T有7片树叶,其余顶点度数均为3,则T中3度顶点有()。
TheMonarchbutterflytravels5,000kmeachyear.Geneticallymodifiedmaizeisn’tpoisonoustothebutterflies.
TheGulfBetweenCollegeStudentsandLibrariansA)Studentsrarelyasklibrariansforhelp,evenwhentheyneedit.Thisis
最新回复
(
0
)