首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include using namespace std; class Instrument { public: virtual void Display()=0; }; class Piano : public Instrument {
有如下程序: #include using namespace std; class Instrument { public: virtual void Display()=0; }; class Piano : public Instrument {
admin
2019-03-05
26
问题
有如下程序:
#include
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
解析
本题考查纯虚函数和抽象类,纯虚函数是在声明虚函数时被"初始化"为0的函数,包含纯虚函数的类为抽象类,抽象类不能被实例化,所以语句"Instrument s;"在编译时出错。
转载请注明原文地址:https://kaotiyun.com/show/PSAp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
若有以下程序:main(){intk=2,i=2,m;m=(k+=i*=k);cout<<m<<","<<i<<endl;}执行后的输出结果是
在数据流图(DFD))中,带有名字的箭头表示
下列叙述中错误的是
下列程序的输出结果为#include<iostream.h>intfunc(intn){if(n<1)return1;elsereturn+func(n-1);return
根据注释内容在空白处填写适当内容。classLocation{private:intX,Y;public:voidinit(intinitX,intinitY);in
在下面的函数声明中,存在着语法错误的是
有如下运算重载函数定义:Doubleoperator+(inti,intk){returndouble(i+k);}但定义有错误,对这个错误的最准确的描述是
下列关于多态性的描述,错误的是()。
下列选项中不属于软件生命周期开发阶段任务的是()。
下列选项中不属于结构化程序设计原则的是
随机试题
从违法行为的要素来看,判断行为是否违法的关键要素是该行为有故意或者过失的过错。()
常用于W/O型乳剂,基质乳化剂是
我国城市垃圾处理的总体战略是实行()、资源化、无害化处理。
在全面预算体系中,作为整个企业预算编制起点的是()。
自力更生是对外开放的前提和基础。( )
根据以下资料。回答下列问题。2007年,世界十大企业中资产利润率最高的公司是:
Inthefollowingtext,somesentenceshavebeenremoved.ChoosethemostsuitableonefromthelistA—Gtofitintoeachofthe
AstronautJimVosshasenjoyedmanymemorablemomentsinhiscareer,includingthreespaceflightsandonespacewalk.Buthere
A、Identifyingthecomplexproblems.B、Solvingthecomplexproblems.C、Planningthedevelopmentofthecompany.D、Communicatingt
A、Theybothattractscientists’attention.B、Theybothcanbequitechallenging.C、Theyareboththought-provoking.D、Theyboth
最新回复
(
0
)