首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Wheel{ public: Wheel(string s=
有如下程序: #include #include using namespace std; class Wheel{ public: Wheel(string s=
admin
2015-07-22
29
问题
有如下程序:
#include
#include
using namespace std;
class Wheel{
public:
Wheel(string s="W"):name(s) { cout<
~Wheel() { cout<
private:
string name;
};
class Bicycle{
public:
Bicycle(string br="G",string f="F",string r="R"):brand(br),rear(r),front(f) { cout<
~Bicycle() { cout<
private:
Wheel front,rear;
string brand;
};
int main(){
Bicycle bike;
return 0;
}
运行时的输出结果是
选项
A、RFG
B、FRG
C、FRGGRF
D、FRGFRG
答案
C
解析
定义Bicycle bike时,执行Wheel的构造函数输出FR,然后执行Bicycle的构造函数输出G,最后执行析构函数,一次执行派生类的析构函数输出G,再输出基类的析构函数输出RF,最终输出FRGGRF,选项C正确。
转载请注明原文地址:https://kaotiyun.com/show/yfNp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下列关于类模板的模板参数的叙述中,错误的是
下列有关C++流的叙述中,错误的是
软件工程3要素包括方法、工具和过程,其中,______支持软件开发的各个环节的控制和管理。
下面叙述中错误的是
请定义一个函数名为A,返回值为int,没有参数的纯虚函数的定义是【】。
假定MyClass为一个类,则该类的拷贝初始化构造函数的声明语句为()。
面向对象程序设计将数据与()放在一起,作为一个相互依存、不可分割的整体来处理。
用树型结构表示实体类型及实体间联系的数据模型称为【】。
若某二叉树的前序遍历访问顺序是abdgcefh,中序遍历访问顺序是dgbaechf,则其后序遍历的结点访问顺序是
随机试题
对于有舱容可调节的耙吸挖泥船在疏浚()时宜采用大舱容。
慢性肺源性心脏病洋地黄应用的指征是
不属于独活寄生汤的组成药物是
腹部肿块,痛无定处,而按之无形者,为
某学生在某次期中考试中,估计自己的英语考试成绩为80分,但其实际成绩为85分。于是,他将期末考试中英语考试的理想成绩定为90分。根据阿尔德弗尔的ERG理论,这反映了该学生的()^
[*]
Whoneedsapublisher?BobYoung,CEOofprint-on-demandserviceLulu,com,saysthatthepublishingand【C1】______ofbooksonlin
To:AllstaffFrom;PersonnelDept.Date:December26th,2008Subject:AppointmentofaNewVicePresidentYouwillbepleas
Therewasatimewhenbig-leagueuniversitypresidentsreallymattered.TheNewYorkTimescoveredtheireverymove.Presidents,
RaisingWiseConsumersAlmostanyonewithaprofitmotiveismarketingtoinnocents.Helpyourkidsunderstandit’sOKnott
最新回复
(
0
)