*/
* Copyright (c) 2016,烟台大学计算机与控制工程学院
* All rights reserved.
* 文件名:text.cpp
* 作者:常轩
* 微信公众号:Worldhello
* 完成日期:2016年5月8日
* 版本号:V1.0
* 问题描述:根据类图,写出程序
* 程序输入:无
* 程序输出:见运行结果
*/
#include <iostream>
using namespace std;
class Person
{ public:
Person(int, string);
void action();
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(110,"li");
Police jack(20,"Yang",2);
Cook john(22,"Sun",4000);
jack.arrest(li);
john.getCake(4);
return 0;
}

(2)

#include <iostream>
using namespace std;
class Person
{ public:
Person(int, string);
void action();
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 a, string n, int l, int la, string ln);
void arrest(Person);
void show();
private:
int level;
Person leader;
};
Police::Police(int a, string n, int l, int la, string ln):Person(a,n),level(l),leader(la,ln) {}
void Police::arrest(Person p)
{
cout<<"Police "<<getName()<<" arrest " <<p.getName()<<endl;
}
void Police::show()
{
cout<<"Police "<<getName()<<", leader is " <<leader.getName()<<endl;
} class Cook: public Person
{
public:
Cook(int a, string n, double s,int pa, string pn, int pl, int pla, string pln);
void getCake(int);
void show();
private:
double salary;
Police protector;
};
Cook::Cook(int a, string n, double s,int pa, string pn, int pl, int pla, string pln):
Person(a,n),salary(s),protector(pa,pn,pl,pla,pln) {}
void Cook::getCake(int n)
{
cout<<"Cook "<<getName()<<" gave me " <<n<<" cakes."<<endl;
}
void Cook::show()
{
cout<<"Cook "<<getName()<<" is protected by Police "<<protector.getName()<<endl;
} int main()
{
Person tom(120,"Tom");
Police jack(30,"Jack",2,43,"Jerry");
Cook john(24,"John",5000,30,"Jack",2,43,"Jerry");
jack.show();
john.show();
return 0;
}

最新文章

  1. mysql批量插入数据的基类
  2. IO-同步,异步,阻塞,非阻塞
  3. mysql给数据库授权 GRANT ALL PRIVILEGES ON
  4. 一个简单的webservice调用
  5. DEDECMS使用SQL命令批量替换语句
  6. Java基础知识强化37:StringBuffer类之StringBuffer的构造方法
  7. ASP.NET MVC+EF框架+EasyUI实现权限管理系列(6)- EF上下文实例管理
  8. 为什么yslow用不了
  9. 原生js实现一个简单的倒计时功能
  10. SuperSocket入门(四)-命令行协议
  11. Hibernate【缓存】知识要点
  12. git中status指令总是提示内容被修改的解决
  13. 【调试基础】Part 1 寄存器
  14. Linux编程 13 (系统环境变量位置, 环境变量持久化)
  15. shell+钉钉机器人完成java程序中断后自启动和实时监控
  16. 【Eclipse】在Project Explore中隐藏不需要显示的文件
  17. 移动端触摸滑动插件Swiper使用指南
  18. 常用HTML标签的全称及描述
  19. RSA加密、解密、签名、校验签名
  20. pygame小游戏之坦克大战

热门文章

  1. stopping service [tomcat],服务未启动
  2. Codeforces 558E A Simple Task(计数排序+线段树优化)
  3. PAT甲级——1025 PAT Ranking
  4. 依据gff切fa并翻译为蛋白质
  5. Java操作redis客户端Jedis使用
  6. iOS 仿看了吗应用、指南针测网速等常用工具、自定义弹出视图框架、图片裁剪、内容扩展等源码
  7. 《C Prime Plus》第八节笔记
  8. 对Java8新的日期时间类的学习(一)
  9. 深入JVM内核--常用JVM配置参数
  10. JAVA的堆栈和内存、垃圾回收解说