首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include using namespace std; class Base { private: void fun1() const { cout
有如下程序: #include using namespace std; class Base { private: void fun1() const { cout
admin
2020-06-29
33
问题
有如下程序:
#include
using namespace std;
class Base
{
private:
void fun1() const { cout<<"fun1"; }
protected:
void fun2() const { cout<<"fun2"; }
public:
void fun3() const { cout<<"fun3"; }
};
class Derived : protected Base
{
public:
void fun4() const { cout<<"fun4"; }
};
int main()
{
Derived obj;
obj.fun1(); // ①
obj.fun2(); // ②
obj.fun3(); // ③
obj.fun4(); // ④
return 0;
}
其中有语法错误的语句是( )。
选项
A、①②③④
B、①②③
C、②③④
D、①④
答案
B
解析
本题考查保护继承中派生类对基类的访问属性,受保护继承中,基类的公用成员和保护成员在派生类中成了保护成员,其私有成员仍为基类私有,保护基类的所有成员在派生类中都被保护起来,在类外不能访问,所以①②③错误。
转载请注明原文地址:https://kaotiyun.com/show/Up8p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
以下程序执行后的输出结果是#include<iostream>.usingnamespacestd;voidtry(int,int,int,int);intmain(){intx,y,z,r
下面程序的运行结果是()。#include<iostream.h>classbase{protected:inta;public:base(){cout<<“0”;}};Class
在公有派生的情况下,派生类中定义的成员函数只能访问原基类的
一个类的友元函数或友元类能够通过成员操作符访问该类的()。
下面关于函数模板的表述中不正确的是()
使用VC++6.0打开考生文件夹下的源程序文件2.cpp。阅读下列函数说明和代码。函数func(intd[],intn)的功能是将长度为num的数组d中的奇数扩大1倍,并存储到数组d中。例如:2,15,6,-3,8,-11,9,24
Sample是一个类,执行下面语句后,调用Sample类的构造函数的次数是()。Samplea[2],*P=newSample;
阅读下面程序:#includefun(inta,intb){intc;c=a+b;returnc;}voidmain(){intx=6,y
下面c++标识符中正确的是()。
随机试题
判断级数(a>0,a≠e)的敛散性.
检测一批糕点食品的微生物指标,请你选择检测国家标准。食品微生物检验的生物安全标准应该符合
依法治国是党领导人民治理国家的基本方略,其根本目的在于()。
公文的作者是指()。
(2006年真题)关于社团法人的下列表述,正确的是
设A=*,且α=为矩阵A的特征向量.(Ⅰ)求a,b的值及a对应的特征值λ.(Ⅱ)求正交矩阵Q,使得QTAQ为对角阵.
在VisualFoxPro中,为了将表单从内存中释放(清除),可在表单退出命令按钮的Click事件中添加代码()。
Thetangohasprobablytraveledfurtherandgonethroughmorechangesthanalmost【C1】______Africanslavesbroughtthetangot
Whatdidthemanreceiveforhisroleinthemovie?
TheImportanceofQuestionsFornon-nativespeakersofEnglishwhowanttoparticipateingroupdiscussions,itis’important
最新回复
(
0
)