首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,其中定义了vehicle类,并派生出motorcar类和bicycle类。然后以motorcar和bicyele作为基类,再派生出motorcycle类。要求将vehicle作为虚基
请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,其中定义了vehicle类,并派生出motorcar类和bicycle类。然后以motorcar和bicyele作为基类,再派生出motorcycle类。要求将vehicle作为虚基
admin
2017-07-04
24
问题
请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,其中定义了vehicle类,并派生出motorcar类和bicycle类。然后以motorcar和bicyele作为基类,再派生出motorcycle类。要求将vehicle作为虚基类,避免二义性问题。请在程序中的横线处填写适当的代码并删除横线,以实现上述类定义。此程序的正确输出结果应为:
80
150
100
1
注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“//****found****”。
#include
clasS vehicle
{
private:
int MaxSpeed;
int Weight;
public:
//**********found**********
vehicle (int maxspeed, int
weight):_______
一vehicle(){);
int getMaxSpeed() { return Max—
Speed;)
int getWeight(){return Weight;)
};
//**********found**********
class bicycle:_______public vehicle
{
private:
int Height;
public:
bicycle(int maxspeed,int weight,
int height):vehicle (maxspeed,
weight),Height(height){}
int getHeight(){return Height;};
};
//**********found**********
class motorcar:_______public vehicle
{
private:
int SeatNum;
public:
motorcar(int maxspeed,int weight
int seatnum):vehicle (maxspeed
weight),SeatNum(seatnum)f)
int getSeatNum(){return SeatNum;);
};
//********** found**********
class motorcycle :________
{
public:
motorcycle (int maxspeed, in
weight,int height):vehicle(ma,
speed,weight),bicycle(maxspeed
weight,height),motorcar(maxspeed
weight,1){}
};,
void main()
{
motorcycle a(80,150,100);
cout<
cout<
cout<
cout<
}
选项
答案
(1)MaxSpeed(maxspeed),Weight(weight){}; (2)virtual (3)virtual (4)public bicycle,public motorcar
解析
(1)主要考查考生对构造函数的掌握,构造函数使用初始化列表来对私有成员MaxSpeed和Weight初始化。
(2)主要考查考生对派生类的掌握,题目要求将vehicle作为虚基类,避免二义性问题。因此在这里添加virtual使vehicle成为虚基类。
(3)主要考查考生对派生类的掌握,题目要求以motorcar和bicycle作为基类,再派生出motorcycle类。在主函数中可以看到motorcycle类的实例a调用getHeig}lt函数和getSeat—Num函数,由此可知这两个基类都是公有继承,因此得出语句:public bicycle,public motorcar。
转载请注明原文地址:https://kaotiyun.com/show/JLAp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
以下函数值的类型是 fun ( float x) {float y; y= 3*x-4; return y; }
下列程序执行后的输出结果是 void funcl(int i); void func2(int i); char st[]="hello,frlend!"; void funcl(int i) { cout<<st[i];
有如下数组声明:intvalue[30];下标值引用错误的是()。
假定变量m定义为int m=7;则定义变量p的正确语句为( )。
设有如图所示的二叉树则对该二叉树前序遍历的结果是
下列运算符中,*运算符在C++中不能重载()。
下列格式化I/O的操作符中,()是设置域宽的。
定义一个函数时,若只允许函数体访问形参的值而不允许修改它的值,则应把该形参声明为【 】类型。
下列运算符中,不能重载的是
下列符号中可以用作C++标识符的是()。
随机试题
党的十八届三中全会指出,全面深化改革的总目标是【】
A、格列本脲B、普通胰岛素C、阿卡波糖D、二甲双胍E、罗格列酮属于磺酰脲口服降血糖药的是
既能泻火除烦,又能凉血止血的药物是既能清热泻火,又能退虚热的药物是
在进行人工饮水加氟时适宜的氟浓度一般应保持在
女,50岁。2周前无明显诱因出现中上腹隐痛,皮肤巩膜黄染,小便呈浓茶样,1周前腹痛缓解,皮肤黄染减退,无皮肤瘙痒。实验室检查:ALT90U/L,尿胆红素(+),该患者最可能的疾病与胰头癌的鉴别诊断要点是
阿片类药物中毒的首选拮抗剂为
对各类结构进行多遇地震作用下的抗震变形验算时,下列各类结构的最大的弹性层间位移限值中正确的是()。
防烟分区的长边一般不大于()m。
Forcenturies,explorershaveriskedtheirlivesventuringintotheunknownforreasonsthatweretovaryingdegreeseconomican
McDonald’s,theburgerbehemothannounceda5.2%dropinprofitsforthefirstthreemonthsof2014anda1.7%decreaseinsame
最新回复
(
0
)