请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2。此工程中包含一个源程序文件main.cpp,其中有类AutoMobile(“汽车”)及其派生类Car(“小轿车”)、Truck(“卡车”)的定义,以及主函数main的定义。请在横线处

admin2020-06-29  6

问题 请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2。此工程中包含一个源程序文件main.cpp,其中有类AutoMobile(“汽车”)及其派生类Car(“小轿车”)、Truck(“卡车”)的定义,以及主函数main的定义。请在横线处填写适当的代码,然后删除横线,以实现上述类定义。此程序的正确输出结果应为:
车牌号:冀ABCl234品牌:ForLand类别:卡车当前档位:0最大载重量:12
车牌号:冀ABCl234品牌:ForLand类别:卡车当前档位:2最大载重量:12
车牌号:沪XYZ5678品牌:QQ类别:小轿车当前档位:0座位数:5
车牌号:沪XYZ5678品牌:QQ类别:小轿车当前档位:一1座位数:5
注意:只在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“//****found****”。
#include<10Stream>
#include
#include
us1。ngnamespacestd;
classAutoMobile{//“汽车”类
char*brand;//汽车品牌
char*number;//车牌号
intspeed;//档位:1、2、3、4、5,空档:0,
倒档:一1
public:
AutoMobile(constchar*thebrand,
constchar*thenumber):speed(0){
//**********found**********
________;
strcpy(brand,the—brand);
number=newchar[strlen(thenum
ber)+1];
//**********found**********
________;
}
~AutoMobile(){delete[]brand;
delete[]number;}
constchar*theBrand()const{returnbrand;}//返回品牌名称
constchar*theNumber()const{returnnumber;)//返回车牌号
intcurrentSpeed()const{return
speed;}//返回当前档位
voidchangeGearTo(intthe_speed){
//换到指定档位
if(speed>=-1&&speed<=5)
speed=the_speed;
}
virtualconstchar*category()
const=0;//类别:卡车、小轿车等
virtualvoidshow()const{
cout<<"车牌号:"<<<"品牌:"<//**********found**********
<<"类别:"<<________
<<"当前档位:"<();
}
};
classCar:publicAutoMobile{//“小汽车”类
intseats;//
public:
Car(constchar*thebrand,const
char*the_number,intthe_seats):
AutoMobile(the_brand,the_number),
seats(the_seats){}
intnumberOfSeat()const{return
seats;}//返回座位数
constchar*category()const{return"小轿车";)//返回汽车类别
voidshow()const{
AutoMobile::show();
cout<<"座位数:"<()<  }
};
classTruck:publicAutoMobile{
//“卡车”类
intmaxload;//最大载重量
public:
Truck(constchar*thebrand,constchar*thenumber,intthemaxload):AutoMobile(the—brand,the_number),max_10ad(the_maxload){}
intmaxLoad()const{returnmaxload;}
//返回最大载重量
constchar*category()const
{return"卡车";)//返回汽车类别
voidshow()const{
//调用基类的show()函数
//**********found**********
cout<<"最大载重量:"<  }
};
intmain(){
Trucktruck("ForLand","冀ABCl234",12);
truck.show();
truck.changeGearTo(2);
truck.show();
Carcar("QQ","沪XYZ5678",5);
car.show();
car.changeGearTo(一1);
car.show();
cout<return0;
}

选项

答案(1)brand = new char[strlen(the_brand) + 1]; (2)strcpy(number, the_number); (3)category() (4)AutoMobile::show();

解析 (1)主要考查考生对动态分配的掌握情况,要复制字符串就要先给brand分配空间。
(2)主要考查考生对strcpy函数的掌握情况,该函数用于复制字符串。
(3)主要考查考生对成员函数的掌握情况,纯虚函数category()返回汽车类型。
(4)主要考查考生对虚函数的掌握情况,调用基类的虚函数show。
转载请注明原文地址:https://kaotiyun.com/show/P78p777K
0

最新回复(0)