1. 程式人生 > >15第十二週專案二——摩托車繼承自行車和機動車

15第十二週專案二——摩托車繼承自行車和機動車

/*
 * Copyright (c) 2014, 煙臺大學計算機學院
 * All rights reserved.
 * 檔名稱:test.cpp
 * 作    者:李曉凱
 * 完成日期:2015年 5 月 24 日
 * 版 本 號:v1.0
 *
 * 問題描述:
 * 輸入描述:
 * 程式輸出:

 */

在下面一段類的定義中,自行車類的虛基類為車輛類,機動車類的虛基類也為車輛類,摩托車類的基類為自行車類和機動車類,類之間均為公有繼承,如圖所示。
下載可執行檔案連結motorcar.exe.
(1)根據上面各類間關係的描述,補全下面程式段中空缺的程式碼;
(2)實現程式中宣告的成員函式,注意相應操作中的動作發生的條件不能滿足時應給出提示。
(3)執行程式,享受開摩托的過程。(可以下載可執行檔案motorcar.exe,先執行再程式設計。不必申請駕照,這個摩托車很安全。)

程式碼:

#include <iostream>
#include<conio.h>
#include <windows.h>
using namespace std;
enum vehicleStaus {rest, running};  //車輛狀態:泊車、行進
class Vehicle //車輛類
{
protected:
    int maxSpeed;		//最大車速
    int currentSpeed;	//當前速度
    int weight;			//車重
    vehicleStaus status; //rest-泊車狀態;running-行進狀態
public:
    Vehicle(int maxS, int w); //建構函式,初始時,當前速度總為0且處在停車狀態
    void start();  //由rest狀態到running, 初速為1
    void stop(); //由running狀態到rest, 當前速度小於5時,才允許停車
    void speed_up();  //加速,呼叫1次,速度加1
    void slow_down(); //減速,呼叫1次,速度減1,速度為0時,停車
};
Vehicle::Vehicle(int maxS,int w):maxSpeed(maxS),weight(w),status(rest) {}
void Vehicle::start()
{
    if(status==rest)
    {
        status=running;
        currentSpeed=1;
    }
    else
        cout<<"車輛已經行駛!"<<endl;
}
void Vehicle::speed_up()
{
    if(status==running)
        if(currentSpeed<maxSpeed)
            currentSpeed;
        else
            cout<<"請不要超速行駛!"<<endl;
    else
        cout<<"車輛沒啟動!"<<endl;
}
void Vehicle::slow_down()
{
    if(status==running)
        if(currentSpeed>0)
            --currentSpeed;
        else
            cout<<"車輛沒啟動!"<<endl;
    if(currentSpeed==0)
        status=rest;
}
void Vehicle::stop()
{
    if(status==running)
    {
        if(currentSpeed<5)
        {
            status=rest;
            currentSpeed=0;
        }
        else
            cout<<"車速太快,先減速在停車....."<<endl;
    }
    else
        cout<<"車輛沒啟動!"<<endl;
}
class Bicycle :virtual public Vehicle//(1)自行車類的虛基類為車輛類
{
protected:
    double height; //車高
public:
    Bicycle(int maxS=10, int w=50, int h=0.7);   //定義建構函式
};
Bicycle::Bicycle(int maxS,int w,int h):Vehicle(maxS,w),height(h) {}

class Motorcar :virtual public Vehicle//(2)機動車類的虛基類也為車輛類
{
protected:
    int seatNum; //座位數
    int passengerNum; //乘客人數
public:
    Motorcar(int maxS=150, int w=1500, int s=5, int p=1);   //定義建構函式
    void addPassenger(int p=1);   //增加搭載的乘客,超員要拒載,有人下車時,p為負數。當然車上乘客至少有1個(司機)。只有車停穩後才能上下客。
};
Motorcar::Motorcar(int maxS,int w,int s,int p):Vehicle(maxS,w),seatNum(s),passengerNum(p) {}
void Motorcar::addPassenger(int p)
{
    if(status==running)
        cout<<"車輛正在行駛中,請停車後再上下車!"<<endl;
    else
    {
        passengerNum+=p;
        if(passengerNum>seatNum)
        {
            passengerNum=seatNum;
            cout<<"車輛已滿員!"<<endl;
        }
        else if(passengerNum<1)
        {
            passengerNum=1;
            cout<<"請司機不要離開崗位!"<<endl;
        }
    }
}
class Motorcycle:public Bicycle,public Motorcar //(3)摩托車類的基類為自行車類和機動車類
{
public:
    Motorcycle(int maxS=90, int w=100, int s=3, int p=1, int h=0.7);//定義建構函式
    void show(); //顯示摩托車的執行狀態
};
Motorcycle::Motorcycle(int maxS,int w,int s,int p,int h):Vehicle(maxS,w),Bicycle(maxS,w,h),Motorcar(maxS,w,s,p) {}
void Motorcycle::show()
{
    cout<<"狀態:";
    if(status==rest)
        cout<<"泊車;\t";
    else
        cout<<"行進;\t";
    cout<<"車速:"<<currentSpeed<<"/"<<maxSpeed<<"\t當前乘員:"<<passengerNum<<"/"<<seatNum<<endl;
}
int main( )
{
    Motorcycle m;
    bool end=false;
    while (!end)
    {
        cout<<"請操作:1-啟動  2-加速  3-減速  4-有人上車  5-有人下車  6-停車 0-結束"<<endl;
        char keydown= _getch(); //_getch()返回鍵盤上讀取的字元
        switch(keydown)
        {
        case '1':
            cout<<"選中的操作是1-啟動\t";
            m.start();
            break;
        case '2':
            cout<<"選中的操作是2-加速\t";
            m.speed_up();
            break;
        case '3':
            cout<<"選中的操作是3-減速\t";
            m.slow_down();
            break;
        case '4':
            cout<<"選中的操作是4-有人上車\t";
            m.addPassenger();
            break;
        case '5':
            cout<<"選中的操作是5-有人下車\t";
            m.addPassenger(-1);
            break;
        case '6':
            cout<<"選中的操作是6-停車\t";
            m.stop();
            break;
        case '0':
            end=true;
            break;
        }
        m.show();
        cout<<endl;
        Sleep(200);  //要包含標頭檔案<windows.h>
    }
    return 0;
}