首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include using namespace std; class AA{ int k; protected: int n; void setK(int k){this->k=k;}
有如下程序: #include using namespace std; class AA{ int k; protected: int n; void setK(int k){this->k=k;}
admin
2020-04-07
29
问题
有如下程序:
#include
using namespace std;
class AA{
int k;
protected:
int n;
void setK(int k){this->k=k;}
public:
void setN(int n){this->n=n;}
};
class BB:public AA{/*类体略*/};
int main(){
BB x;
x.n=1: //1
x.setN(2); //2
x.k=3; //3
x.setK(4); //4
return 0:
}
在标注号码的四条语句中正确的是( )。
选项
A、1
B、2
C、3
D、4
答案
B
解析
因为类BB公有继承自类AA,所以AA中的保护成员和公有成员在类BB中仍是保护成员和公有成员。在选项B中调用了公有成员函数setN(intn){this->n=n;},对保护成员n进行赋值操作。
转载请注明原文地址:https://kaotiyun.com/show/Z38p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下函数模板:template<typenameT,typenaineU>Tcast(Uu){returnu;}其功能是将U类型数据转换为T类型数据。已知i为int型变量,下列对模板函数cast的调用中正确的是
请在下列程序中的横线处填写正确的语句:classSample{public:Sample()()~Sample(){}voidSetData(intdata){//将Sample类
下列程序将x、y和z按从小到大的顺序排列,请将下面的函数模板补充完整。template<classT>voidorder(){Talif(x>y){a=x;x=y;y=a;}
继承与【】机制,是面向对象程序中实现重用的主要手段。
设有基类定义: class Cbase { private: int a; protected: int b; public: int c; }; 派生类采用何种继承方式可以使成员变量b成为自己的私有
设有程序段intk=10;while(k=0)k=k-1;则下面描述中正确的是
随机试题
独活寄生汤的功用是
患者男性,26岁。发作性意识障碍5年,发作时双目瞪视,一手捂头或突然站起走动,每次持续2~3分钟或更长,发作过后不能追忆,发作无一定规律性。该患者经某种抗癫痫药治疗后,近一年半发作停止。下一步应该
氨基苷类抗生素中卡那霉素的一个特点是
下列关于用人单位招用人员陈述不正确的是()。
下列项目免征营业税的有()。
下列各项中,划线词的词义古今没有发生变化的一项是()。
A、TRUEB、FALSEA
A、Weshouldbehardworking.B、Weareincontrolofourlife.C、Wehavegreatpotentialforeverything.D、Wecanaccomplishther
EatingDisorders:FactsAboutEatingDisordersandtheSearchforSolutionsEatingiscontrolledbymanyfactors,including
A、Tomakefulluseofthemetalsleft.B、Toprotecttheforestresourcesfrombeingdestroyed.C、Tocallforstoppingusingplas
最新回复
(
0
)