首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #inc1ude<iOStream> uSing namespace std; class Instrument{ public: virtual void Display()=0; };
有如下程序: #inc1ude<iOStream> uSing namespace std; class Instrument{ public: virtual void Display()=0; };
admin
2020-11-11
27
问题
有如下程序:
#inc1ude<iOStream>
uSing namespace std;
class Instrument{
public:
virtual void Display()=0;
};
class Piano: public Instrument{
public:
void Display(){/*函数体程序略*/}
};
int main(){
Instrument S;
Instrument *p=0;
//…;
return 0;
}
下列叙述中正确的是( )。
选项
A、语句“Insturment *p=0;”编译时出错
B、语句“Instrument s:”编译时出错
C、类Piano中的Display函数不是虚函数
D、类Instrument是一个虚基类
答案
B
解析
由于函数Display()是一个纯虚函数,所以类Instrument是抽象类,而抽象类是不能定义对象的,因而选项B)为正确选项。
转载请注明原文地址:https://kaotiyun.com/show/Elyp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序#inc1ude<iostream>#inc1ude<iomanip>usingnamespacestd;c1assMyClass{public:MyClass(){cout<<’
下列关于模板形参的描述中,错误的是()。
当使用ofstream流类定义一个流对象并打开一个磁盘文件时,文件的默认打开方式为()。
有如下程序:#inc1ude<iostream>#inc1ude<iomanip>usingnamespacestd;intmain(){cout<<setw(10)<<setfill(’x’)<
有如下类定义和变量定义:c1assParents{public:intpublicData;private:intprivateData;);c1assChildA:public
下列关于继承方式的描述中,错误的是()。
有如下类声明:c1assXA{intx;public:XA(intn){x=n;}};c1assXB:publicXA{inty;public:XB(in
有如下程序#inc1ude<iostream>usingnamespacestd;inti=1;c1assFun{public:staticinti;intvalue(){
使用VC6打开考生文件夹下的源程序文件modi2.cpp。请完成函数fun(char*s),该函数完成以下功能:(1)把s中的大写字母转换成小写字母,把其中的小写字母转换成大写字母。并且在函数中调用写函数WriteFile()将结果输出到modi
下面的函数调用为:fun(x+y,3,min(n—1,y))则fun的实参个数是()。
随机试题
m个并发进程竞争必须互斥使用的共享资源时,若某进程调用P操作后成为第一个等待使用资源者,则这时信号量的值为()
治疗肩臂痛,臂不能举,应首选
A.患者诊疗早期B.患者诊疗中期C.患者康复期D.患者复原期E.患者终末期
诊断癔症最重要的是
根据人们对自然状态规律的认识和掌握程度,决策分析方法包括()
关于股票收益互换的表述,下列说法有误的是()
关于专利权的转让,下列说法错误的是()
Anydeclineinthenumberofgamebirdswasdueto______habitat,over-grazingandthlossofheathermoorland.
Thereisapoem,writtenaround598A.D.,whichdescribeshuntingamysteryanimalcalledallewyn.Butwhatwasit?Nothingsee
列强逐渐操纵了中国的经济命脉,体现在()。
最新回复
(
0
)