您的位置:首页 > 其它

第十一周上机实践项目3(1):警察和厨师

2016-05-26 09:23 302 查看
/*
*Copyright(c) 2016.烟台大学计算机与控制工程学院
*ALL rights  reserved.
*文件名称:text.cpp
*作者:赵子琳
*完成日期:2016年5月26日
*问题描述:上面是声明好的类及测试函数,请完成类中成员函数的定义,使运行结果如图所示。
*/

#include <iostream>
using namespace std;
class Person
{
public:
Person(int, string);
void action();
int getAge()
{
return age;
}
string getName()
{
return name;
}
private:
int age;
string name;
};
Person::Person(int a, string n):age(a), name(n) {}
void Person::action()
{
cout<<name<<" do some action"<<endl;
}

class Police: public Person
{
public:
Police(int, string, int);
void arrest(Person);
private:
int level; //级别
};
Police::Police(int a, string n, int l):Person(a,n),level(l) {}
void Police::arrest(Person p)
{
cout<<" Police "<<getName()<<" arrest " <<p.getName()<<endl;
}

class Cook: public Person
{
public:
Cook(int, string, double);
void getCake(int);
private:
double salary; //薪水
};
Cook::Cook(int a, string n, double s):Person(a,n),salary(s) {}
void Cook::getCake(int n)
{
cout<<" Cook "<<getName()<<" gave me " <<n<<" cakes."<<endl;
}

int main()
{
Person tom(28,"Tom");
Police jack(30,"Jack",3);
Cook john(24,"John",8);
jack.arrest(tom);
john.getCake(4);
return 0;
}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: