首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下类定义: class Person{ public: Person(string s):name(s) { } protected: string name;
有如下类定义: class Person{ public: Person(string s):name(s) { } protected: string name;
admin
2020-07-23
32
问题
有如下类定义:
class Person{
public:
Person(string s):name(s) { }
protected:
string name;
};
class Father:virtual public Person{
public:
Father(string s):Person(s) { }
};
class Mother:virtual public Person{
public:
Mother(string s):Person(s) { }
};
class Child:public Father,public Mother,virtual public Person{
public:
Child(string s1,string s2,string s3):Mother(s1),Father(s2),Person(s3) { }
};
在建立派生类Child的对象时,其基类Father、Mother和Person的构造函数的调用顺序为
选项
A、Father,Mother,Person
B、Mother,Father,Person
C、Person,Father,Mother
D、Father,Person,Mother,Person,Person
答案
C
解析
执行派生类构造函数的顺序是:
1、调用基类构造函数,2、调用子对象构造函数,3、再执行派生类构造函数,所以本题中先调用基类person构造函数,然后执行father构造函数,最后执行mother构造函数。
转载请注明原文地址:https://kaotiyun.com/show/1Lyp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序:#include#includeusingnamespacestd;classTV{public:TV(ints=41):size(
下列有关虚函数的表述中正确的是
运算符重载是对已有的运算符赋予多重含义,因此()。
有如下类定义:classBag{public:Bag(strings="Small",stringcr="Black"):size(s),color(cr){}~Ba
有如下类定义:classXX{intxdata;public:XX(intn=0):xdata(n){}};classYY:p
下面是重载为非成员函数的运算符函数原型,其中错误的是
若要在Viz类中将*重载为一元运算符,下列重载函数声明中肯定有错的是
下列关于运算符重载的描述中,错误的是
请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,其中有矩阵基类MatrixBase、矩阵类Matrix和单位阵unitMatrix的定义,还有main函数的定义。请在横线处填写适当的代码并删除横线,以实现上述类定义。此程序的正确输
随机试题
引发爆炸的条件是:爆炸品(含还原剂与氧化剂在内)或可燃物与空气的混合物(在爆限之内)和引爆源同时存在相互作用。下列属于防爆的基本原则是__________。
我国坚持独立自主、自力更生和对外开放的方针,进行社会主义现代化建设,其哲学依据是()
我国文学史上现存诗歌数量最多的诗人是()。
A.立即封盖伤口,包扎固定B.清创缝合伤口,并做闭式引流C.气管内插管,辅助呼吸D.气管切开,充分供氧男,20岁,左胸刺伤后,呼吸困难,脉搏102次/分,可听到气体进出胸膜腔的响声,首先应采取的措施是
A.清蛋白B.α1球蛋白C.α2球蛋白D.γ球蛋白E.β球蛋白对血浆胶体总渗透压贡献最大的蛋白质是
石决明栝楼
城市居住区用地平衡控制指标中除有住宅用地、道路用地和公共绿地外,还应包含下列哪项用地?[2011-21]
下列做法最不利于培养学生创造性的是()
相对于传统学术研究,教育行动研究的突出特点是()。
下列关于当前我国工业的说法正确的是()。
最新回复
(
0
)