第十一週上機實踐項目 項目3-警察和廚師(1)

問題及代碼:

【項目-警察和廚師】
(1)根據下面的類圖,定義各個類:
這裏寫圖片描述
要求:
各個成員函數,只要輸出相關的信息即可,暫不深究其業務功能
請爲各個類增加構造函數
在實現中,可以增加需要的其他函數
自行編制main函數,完成初步的測試

/*
 Copyright(c)2016,煙臺大學計算機與控制工程學院
  All rights reserced
 文件名稱:test.cpp
 作    者:蔡汝佳
 完成日期:2016年5月19日
 版 本 號:v1.0
 問題描述:
 輸入描述:
 程序輸出:
*/

#include <iostream>

using namespace std;
class Person
{
public:
    Person(int a,string nam);
    void action();
    string getname(){return name;}
protected:
    int age;
    string name;
};
Person::Person(int a,string nam):age(a),name(nam){}
void Person::action()
{
    cout<<"姓名:"<<name<<endl;
    cout<<"年齡:"<<age<<endl;
}
class Police:public Person
{
public:
    Police(int a,string nam,int l);
    void arrest(Person);
private:
    int level;
};
Police::Police(int a,string nam,int l):Person(a,nam),level(l){}
void Police::arrest(Person p)
{
    cout<<"Police"<<name<<" arrest "<<p.getname()<<endl;
}
class Cook:public Person
{
public:
    Cook(int a,string nam,double s);
    void getCake(int );
private:
    double salary;
};
Cook::Cook(int a,string nam,double s):Person(a,nam),salary(s){}
void Cook::getCake(int n)
{
    cout<<name<<" cook "<<n<<" cake."<<endl;
}
int main()
{
    Person tom(120,"Tom");
    Police jack(30,"Jack",2);
    Cook john(24,"John",5000);
    jack.arrest(tom);
    john.getCake(4);
    return 0;
}


 

運行結果:

知識點總結:

 

學習心得:

發佈了86 篇原創文章 · 獲贊 0 · 訪問量 2萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章