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

admin2021-05-06  21

问题 请使用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
#include
#include
usingnamespacestd;
classAutoMobile{//“汽车”类
char*brand;//汽车品牌
char*number;//车牌号
intspeed;//档位:1、2、3、4、5,空档:0,倒档:-1
public:
AutoMobile(constchar*thebrand,
constchar*thenumber):speed(0){
brand=newchar[strlen(the
brand)+1];
//**********found**********
________;
//**********found**********
________;
strcpy(number,the_number);
}
~AutoMobile(){delete[]brand;
delete[]number;}
constchar*theBrand()const{returnbrand;}//返回品牌名称
constchar*theNumber()const{returnnumber;}//返回车牌号
intcurrentSpeed()const{returnspeed;}//返回当前档位
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*thenumber,inttheseats):
AutoMobile(the_brand,the_number),
seats(theseats){}
intnumberOfSeat()const{return
seats;)
//返回座位数
constchar*category()const{return"小轿车";)//返回汽车类别
voidshow()const{
AutoMobile::show();
cout<<"座位数:"<()<}
},
classTruck:publicAutoMobile{//
“卡车”类
intmaxload;//最大载重量
public:
Truck(constchar*thebrand,
constchar*thenumber,intthemax
load):AutoMobile(thebrand,the
number),maxload(themaxload){)
intmaxLoad()const{returnmax
load;}//返回最大载重量
//**********found**********
constchar*category()________//
返回汽车类别
voidshow()const{
AutoMobile::show();
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)strcpy(brand,the_brand) (2)number=newchar[strlen(the_number)+1] (3)tlleBrand() (4)const{return"卡车";}

解析 (1)主要考查考生对strcpy函数的掌握情况,在上一条语句程序给brand指针分配了空间,在这里要复制字符串the_brand,即strcpy(brand,the_brand);。
(2)主要考查考生对动态分配的掌握情况,参考brand指针的复制过程完成该语句,先给指针number分配空间,通过new来完成:number=newchar[strlen(tlle_number)+1];。
(3)主要考查考生对成员函数的掌握,由程序可知这里要输出的是品牌,因此调用成员函数theBrand()来输出品牌。
(4)主要考查考生对纯虚函数的掌握,根据纯虚函数的定义:virtualconstchar*category()const=0;,可知在这里要填写:const{return"卡车";}。
转载请注明原文地址:https://kaotiyun.com/show/qTfp777K
0

随机试题
最新回复(0)