首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
请打开考生文件夹下的解决方案文件proj2,其中定义了vehicle类,并派生出motorcar类和bicycle类。然后以motorcar和bicycle作为基类,再派生出motorcycle类。要求将vehicle作为虚基类,避免二义性问题。请在程序中
请打开考生文件夹下的解决方案文件proj2,其中定义了vehicle类,并派生出motorcar类和bicycle类。然后以motorcar和bicycle作为基类,再派生出motorcycle类。要求将vehicle作为虚基类,避免二义性问题。请在程序中
admin
2020-12-21
53
问题
请打开考生文件夹下的解决方案文件proj2,其中定义了vehicle类,并派生出motorcar类和bicycle类。然后以motorcar和bicycle作为基类,再派生出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 MaxSpeed;}
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 seatntma):vehicle(maxspeed,weight),SeatNum(seatnum){}
iut getSeatNum(){return SeatNum;};
};
//**********found**********
class motorcycle: ________
{
public:
motorcycle(iut maxspeed,int weight,int height):vehicle(maxspeed,weight),bicycle(maxspeed,weight,
height),motorcar(maxspeed,weight,1){}
};
void main()
{
motorcycle a(80,150,100);
cout<<a.getMaxSpeed()<<endl;
cout<<a.getWeight()<<endl;
cout<<a.getHeight()<<endl;
cout<<a.getSeatNum()<<endl;
}
选项
答案
(1)MaxSpeed(maxspeed),Weighl(weiht){}; (2)v jnual (3)virtual (4)public bjcycle,public motorcar
解析
本题考查vehicle类及其派生类motorcar和bicy—cle,再由这两类派生出motorcycle类,其中涉及构造函数、成员函数和析构函数。构造函数采用成员初始化列表来完成对私有成员的初始化,派生类的书写要注意关键字。 (1)主要考查号生对构造函数的掌握,构造函数使用初始化列表来对私有成员Maxspeed和weight初始化。(2)主要考查号生对派生类的掌握,题目要求将vehicle作为虚基类,避免二义性问题。因此在这里添加vehicle使vehicle成为虚基类。(3)主要考查考生对派生类的掌握,派生出motorcycle类,在主函数可以看到motorcycle类的实例a调用getHeight函数和getseatNum函数,由此可知这两个基类都垃公有继承,因此得出语句:public bicycle,public motorear。虚基类继承时要添加关键字vinual,以避免二义性。
转载请注明原文地址:https://kaotiyun.com/show/uOyp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下面程序中对一维坐标点类Point进行运算符重载 #include <iostream> using namespace std; class Point { public: Point(int val) {x=val;}
下列函数模板的定义中,合法的是
在下面的运算符重载函数的原型中,错误的是
定义派生类时,若不使用关键字显式地规定采用何种继承方式,则默认方式为( )。
有如下类定义: Class MyClass{ int value; public: MyClass(int n): value(n){} int getValue()const{return value;}
C++中的模板包括
使用VC6打开考生文件夹下的源程序文件modi2.cpp。阅读下列函数说明和代码,实现函数sort(intA[].int.n),用选择排序法把数组从大到小排序。提示:选择排序法的思想是:(1)反复从还未排好的那部分线性表中选择出关键字最
对于语句cout<<endl<<x中的各个组成部分,下列叙述中错误的是()。
有如下函数模板:template<classT>Tsquare(Tx){returnx*x;}其中T是()。
随机试题
HowtoGiveAGreatPublicTalkThenumberonetaskistotransferintolisteners’minds【T1】________.Confineyourtalk
关于脑血肿,下列说法正确的是
预防全身麻醉时气道分泌物增多的药物是
骨巨细胞瘤在病理学上既有良性又有恶性,其恶性比率是
具备相应情形的特殊建设工程,向公安消防机构申请消防验收的单位是()。
根据支付结算法律制度的规定,下列情形中属于存款人应向开户银行提出撤销银行结算账户的申请的情形有()。
在旅行社接待工作中处在第一线的关键人物是()。
下面是某求助者MMP1-2的测验结果:关于BRMS量表,正确的表述是()。
新农村新家庭汁划旨在依托人口和计划生育网络,倡导和促进健康文明的行为和生活方式,保障农民享有基本的生殖健康服务,培育一大批()的新家庭。
文景之治
最新回复
(
0
)