首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下类定义: class Person{ public: Person(string s):name(s) { } protected: string name;
有如下类定义: class Person{ public: Person(string s):name(s) { } protected: string name;
admin
2019-03-05
27
问题
有如下类定义:
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/jvAp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
在下面横线上填上适当的语句,完成程序。#include<iostream>usingnamespacestd;classBase{intx:
下列有关继承和派生的叙述中,正确的是
程序的结果为______。#include"iostream.h"template<typenameT>Ttotal(T*data){Ts=0;while(*data){S+=*da
以下叙述正确的是
对n个元素的序列进行冒泡排序时,最少的比较次数是______。
已知函数FA调用FB,若要把这两个函数定义在同一个文件中,则
数据库管理系统是
在深度为7的满二叉树中,度为2的结点个数为______。
在关系数据库中,用来表示实体之间联系的是______
关于关键字class和typename,下列表述正确的是
随机试题
下列可能成为慢性支气管炎急性发作的最主要致病菌是
新斯的明兴奋骨骼肌的作用机制是
()的实施为我国工业区域结构的调整提供了良好的机遇。
报关
外汇期货交易量较小的原因主要有()。
简述威尼斯画派的艺术特色及其代表人物。
函数在其定义域内是否连续?作出f(x)的图形.
Hewaskeptinappallingconditionsinprison.
To:ALLSTAFFSubject:RecyclingCampaignDate:July1,2007Inanon-going,earth-friendlyefforttorecyclemorewasteforabe
Ishouldbemuchobligedifyou_____metotheairport.
最新回复
(
0
)