首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下类定义: class Father{ //基类 public: Father(string s):name(s) { } private: stri
有如下类定义: class Father{ //基类 public: Father(string s):name(s) { } private: stri
admin
2021-06-10
24
问题
有如下类定义:
class Father{ //基类
public:
Father(string s):name(s) { }
private:
string name;
};
class Mother{ //基类
public:
Mother(string s):name(s) { }
private:
string name;
};
___________________________{ //Father和Mother的派生类
public:
Child(string s1,string s2,string s3):Father(s1),Mother(s2),name(s3) { }
private:
string name;
};
若派生类Child从基类Father和基类Mother处公有继承,则横线处缺失的部分是
选项
A、class Child
B、class Child:Father,Mother
C、class Child:public Father,Mother
D、class Child:public Father,public Mother
答案
B
解析
一个派生类同时继承两个或者多个基类时称为多重继承,其一般形式为:
class 派生类名:[继承方式]基类名1,[继承方式]基类名2,所以D选项正确。
转载请注明原文地址:https://jikaoti.com/ti/Bwh0FFFM
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
使用VC6打开考生文件夹下的源程序文件modi3.cpp,其中定义的类并不完整,按要求完成下列操作,将类的定义补充完整。(1)定义类CPlanet的保护数据成员distance和revolvePeriod,它们分别表示行星距太阳的距离和行星的公转周期。其
有如下程序:#include#includeusingnamespacestd;classAnimal{public:virtualstring
有如下程序:#includeusingnamespacestd;voidfun(inta,______________){intc;c=a;a=*b;*b=c;}
有如下类定义:classMyClass{public:MyClass(doubled=0.0):val(d){}______________/
有三个关系R、S和T如下:则由关系R和S得到关系T的操作是()。
如下函数模板:templateTsquare(Tx){returnx*x;}其中T是()。
请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,该工程中包含一个程序文件main.cpp,其中有坐标点类point、线段类Line和三角形类Triangle的定义,还有main函数的定义。程序中两点间距离的计算是按公式d=实现的,
随机试题
A1/2B1/3C1/4D1/5E2/3
中国资产评估协会于2008年发布并于2011年修订的用于指导企业国有资产评估报告撰写方面的评估准则,在我国评估准则体系中属于()。
衡量商业银行流动性的指标中,贷款总额与核心存款比率这一指标可以通过哪两个指标换算得到()
【2018上】教师经常会采用“换位思考”的方式进行心理辅导。其背后的心理机制是()。
TheCo-opBookshopYourbookshoponCampusYouGettheBooks&theP
Ifyouwanttoseewhatittakestosetupanentirelynewfinancialcenter(andwhatisbestavoided),headforDubai.Thistin
TranslatetheunderlinedphraseintoChinese.ThetestwassodifficultthatIreallyhadtorackmybrainstofindtheanswers.
A、Sheisnewinthecity.B、Sheisnothelpful.C、Sheisapolicewoman.D、Sheisaresidentofthiscity.A
ThePlayofPower:AnIntroductiontoAmericanGovernmentJamesEisenstein,MarkKessler,BruceA.WilliamsandJacquelineV
A、Around1600.B、Around1700.C、Around1800.D、Around1900.C
最新回复
(
0
)