首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Father{ public: Father(string
有如下程序: #include #include using namespace std; class Father{ public: Father(string
admin
2019-07-10
34
问题
有如下程序:
#include
#include
using namespace std;
class Father{
public:
Father(string s):name(s) { }
~Father() { cout<<’F’; }
private:
string name;
};
class Mother{
public:
Mother(string s):name(s) { }
~Mother() { cout<<’M’; }
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) { }
~Child() { cout<<’C’; }
private:
string name;
int age;
};
int main(){
Child son("Zhang","Li","Ming",20);
return 0;
}
运行时的输出结果是
选项
A、C
B、CMF
C、CFM
D、20CMF
答案
C
解析
执行派生类构造函数的顺序是:
1、调用基类构造函数,2、调用子对象构造函数,3、再执行派生类析构函数,4、执行基类的析构函数。所以本题中执行析构函数为派生类的析构函数、Father的析构函数、Mother的析构函数,所以输出CFM,答案C正确。
转载请注明原文地址:https://kaotiyun.com/show/kP8p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
关于虚函数,以下说法正确的是()。
以下运算符中不能重载的运算符是
在任何类中都有三种访问权限的数据成员,这三种权限是public、private和_______。
在C++语言程序中
有如下程序:#include<iostream>usingnamespacestd;ClassA{public:A(){cout<<“A”;}~A(){cout<<“~A”;}};
已知一个类A,类A有三个公有成员:voidf1(int),voidf2(int)和inta;定义指向类A成员函数的指针是()。
关于模板,下列说法不正确的是()。
算法的空间复杂度是指()。
数据结构分为线性结构和非线性结构,带链的队列属于【 】。
插入排序算法的主要思想是:每次从未排序序列中取出一个数据,插入已排序序列中的正确位置。Insert类的成员函数sort()实现了插入排序算法,请填空。classInsert{public:Insert(int*b0,int
随机试题
一个教师可讲授多门课程,一门课程可由多个教师讲授。则实体教师和课程间的联系是( )。
A、Becausetheygetmorepraisefromtheirparents.B、Becausetheygetmoreemotionalsupportfromtheirparents.C、Becausethey
治疗癃闭实证的穴位有
砌体施工时,楼面和屋面堆载不得超过楼板的()。
下列关于架空电力线路过电压保护方式的设计原则中,哪些项与规范不一致?()
可转换公司债券的票面利率由发行人根据()确定。
请设计关于自然测量的大班数学活动,要求写明活动名称、活动目标、活动准备、活动过程以及设计意图。
你认为你的情商如何?请举例说明。
下列各项中,符合营业税计税依据规定的是()。
"Intelligence"atbestisanassumptiveconstruct--themeaningofthewordhasneverbeenclear.【61】Thereismoreagreementon
最新回复
(
0
)