首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Father{ public: Father(string
有如下程序: #include #include using namespace std; class Father{ public: Father(string
admin
2021-06-10
21
问题
有如下程序:
#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/Zkfp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
数据库设计中反映用户对数据要求的模式是()。
下列字符串中不能作为C++标识符使用的是()。
在数据库管理技术的发展中,数据独立性最高的是()。
有如下程序:#includeusingnamespacestd;classTV{public:TV(ints=41):size(s){}
要利用C++流进行文件操作,必须在程序中包含的头文件是
有如下类定义:classMyClass{public:MyClass(doubled=0.0):val(d){}______________/
下列函数的运行结果是()。includeintf(inta,intb){intc;if(a>b)c=1:elseif(a==b)c=0:elsec=-1:return(c)
下列叙述中正确的是()。
下列运算符函数中,肯定不属于类Number的成员函数的是
下面属于黑盒测试方法的是()。
随机试题
下列不是氧化还原滴定指示剂的是()。
Morethanfortythousandreaderstoldusthattheylookedforinclosefriendships,whattheyexpected【C1】______friends,whatth
空气监测记录显示SO2的日平均浓度为0.30mg/m3,超过环境空气质量二级标准,则其超标倍数为()。
熔铸主要有配料、精炼、晶粒细化和铸造4个工序。铝液从真空抬包中直接注入混合炉,经配料、精炼、搅拌后扒去铝液表面浮渣,按产品牌号及品种的要求,进行合理调配。下列关于熔铸安全控制措施的描述,正确的是()。
贯彻执行建设工程质量法规和强制性标准,正确配置施工生产要素和采用科学管理的方法,实现工程项目预期的使用功能和质量标准,这是( ),是工程参与各方的共同责任。
能够对资本市场产生系统性影响的风险包括()
以下符合《税收征收管理法》规定的是()。
新时期以后曾经在长篇小说创作中长期担任主力的作家现在已经普遍步入老年,而这一代人由于成长于特殊环境,出现了一些与现时代社会的脱节现象。倒是一批已经崛起的“70后”“80后”作家,无论是国际视野还是历史纵深感,都已经具备了超越前人的潜质。因此,已经获得茅盾文
Eyesightplaysaveryimportantroleinourdailylife.Everywakingmoment,theeyesareworkingtoseetheworldaroundus.Ov
SummerforCollegeStudentsCollegestudentsspendtheirsummersinmany【T1】______ways.Manystudents【T2】______hardatsu
最新回复
(
0
)