首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: class Base { public: int data; }; class Derived1 : public Base {}; class Derived2 : protected Base {}; int main() { Deriv
有如下程序: class Base { public: int data; }; class Derived1 : public Base {}; class Derived2 : protected Base {}; int main() { Deriv
admin
2021-09-05
15
问题
有如下程序:
class Base {
public:
int data;
};
class Derived1 : public Base {};
class Derived2 : protected Base {};
int main()
{
Derived1 d1;
Derived2 d2;
d1.data = 0; // ①
d2.data = 0; // ②
return 0;
}
下列关于程序编译结果的描述中,正确的是( )。
选项
A、①②皆无编译错误
B、①有编译错误,②无编译错误
C、①无编译错误,②有编译错误
D、①②皆有编译错误
答案
C
解析
本题考查公用继承和保护继承对基类成员的访问属性。在公用继承中,基类的公用成员和保护成员在派生类中保持原有访问属性,其私有成员仍为基类私有。在受保护继承中,基类的公用成员和保护成员在派生类中成了保护成员,其私有成员仍为基类私有。本题中Derived1公用继承Base,所以①编译正确,Derived2保护继承Base,所以②编译不正确。
转载请注明原文地址:https://kaotiyun.com/show/9Kfp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序:#includeusingnamespacestd;classA{public:staticinta;voidinit(){a=1;}A(inta=2){init();a++
有如下程序:#include#includeusingnamespacestd;classFather{public:Father(string
下列语句中错误的是()。
有如下程序:#includeusingnamespacestd;classMyClass{public:MyClass(inti=0){cout
若有如下程序段:#includeusingnamespacestd;intmain(){char*p="abcdefgh",*r;r=p;cout
有如下程序:#includeusingnamespacestd;classA{public:A(){eout
有如下类定义:classMyClass{public:_________________private:intdata;};若要为MyClass类重载流输入运算符“>>”,使得程序中可以“cin>>obj;”的形式改变MyClass类的
有如下枚举类型定义:enumDAY{SUN,MON=10,TUE,WED,THU,FRI=20,SAT};执行下列程序段for(inti=0;i
下列控制格式输入/输出的操作符中,能够设置浮点数精度的是()。
软件调试的目的是()。
随机试题
从任脉开始,由内向外的经脉排列是
华钩藤毛钩藤
混凝土排水管安装外观质量要求管口缝带圈不得开裂脱皮,管口内缝砂浆不得有空鼓。()
以下是某位英语老师在进行词汇教学时的情景。T:Goodmorning,boysandgirls.TodaywearegoingtolearnsomeusefulvocabulariesinUnit3ofModule
琵琶古曲《________》是由民间曲牌《八板》发展而成。它以清新、快捷的旋律和节奏,描绘了冬去春来、万物生辉的初春景象。
Awell-writtenbiographycan______thebarriersoftimeandbringtheherobacktolife.
ThestoryofMr.BuffettisnotedtosuggestthatWhatcanbeinferredfromthefiguresinParagraph2?
有如下一个函数过程:FunctionFun(aAsInteger)StaticC b=0:b=b+1:c=c+1 Fun=a+b+cEndFunction在窗体上添加一个命令按钮,事件过程如下:
Howwe______achancetovisityourgreatcountry!
AustralianminingentrepreneurClivePalmeronTuesdayunveiledblueprintsforTitanicII,amodernreplicaofthedoomedocean
最新回复
(
0
)