首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Father{ public: Father(string
有如下程序: #include #include using namespace std; class Father{ public: Father(string
admin
2020-07-23
15
问题
有如下程序:
#include
#include
using namespace std;
class Father{
public:
Father(string s):name(s) { cout<<’F’; }
~Father() { }
private:
string name;
};
class Mother{
public:
Mother(string s):name(s) { cout<<’M’; }
~Mother() { }
private:
string name;
};
class Child:public Mother,public Father{
public:
Child(string s1,string s2,string s3,int a):Father(s1),Mother(s2),name(s3),age(a) { cout<<’C’; }
~Child() { }
private:
string name;
int age;
};
int main(){
Child son("Zhang","Li","Ming",20);
return 0;
}
运行时的输出结果是
选项
A、C
B、FMC
C、MFC
D、FMC20
答案
C
解析
执行派生类构造函数的顺序是:
1、调用基类构造函数,2、调用子对象构造函数,3、再执行派生类析构函数,4、执行基类的析构函数。所以本题中执行构造函数为先执行基类Mother的构造函数、然后执行基类Father的构造函数,再执行派生类的构造函数函数,所以输出MFC,答案C正确。
转载请注明原文地址:https://kaotiyun.com/show/a6yp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序段:inti=1;while(1){i++;if(i==100)break;if(i%2==0)cout
有如下程序:#includeusingnamespacestd;classA{public:staticinta;voidinit(){a=10;}A(inta=5){init
若已经定义了如下的函数:intf(inti,charc);则下列函数中可以作为此函数的重载函数的是
Sample是一个类,且有如下语句:Samplea[2],*p=newSample;执行这个语句时调用Sample类的构造函数的次数是
有如下类定义:classPet{charname[30];public:Pet(char*n){strcpy(name,n);}voidbark(){co
设c1和c2是类MyClass的对象,若将运算符"+"和"*"作为类MyClass的成员函数重载,则表达式c1+c2*c1等价于
下列字符中,可以出现在合法的C++标识符中的是
设二叉树如下:则中序序列为
下列关于模板的表述中,正确的是
随机试题
诊断分离(转换)性障碍最重要的是
A.EARB.RNIC.AID.DRIE.UL群体中各个体需要量的平均值是
患者,女,48岁,理发员。下肢酸胀、沉重5年,活动或休息后减轻。体检见小腿内侧有蚓状团块,足靴区有色素沉着。目前患者最主要的护理诊断是
2011年2—12月间,上交所和深交所上市公司市价总值均环比下降的月份有几个?
国际格局走向多极化,是时代进步的要求,符合各国人民的利益,多极化的发展,有利于()
(93年)设有直线则L1与L2的夹角为
SelectCase结构运行时首先计算()。
•Lookatthenotesbelow.Itshowsthetalksontheprogramforacompany’sannualstaffconference.•Forquestions6-10,deci
Oneofthemostcommonhumanfearsisscarcity.Manypeopleareafraidofnothavingenoughofwhattheyneedorwant,andsoth
Whichofthefollowingreflexivepronouns(反身代词)isusedasanappositive(同位语)?
最新回复
(
0
)