Visitor.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section2;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Visitor implements IVisitor {
  7. //访问普通员工,打印出报表
  8. public void visit(CommonEmployee commonEmployee) {
  9. System.out.println(this.getCommonEmployee(commonEmployee));
  10. }
  11. //访问部门经理,打印出报表
  12. public void visit(Manager manager) {
  13. System.out.println(this.getManagerInfo(manager));
  14. }
  15. //组装出基本信息
  16. private String getBasicInfo(Employee employee){
  17. String info = "姓名:" + employee.getName() + "t";
  18. info = info + "性别:" + (employee.getSex() == Employee.FEMALE?"女":"男") + "t";
  19. info = info + "薪水:" + employee.getSalary()  + "t";
  20. return info;
  21. }
  22. //组装出部门经理的信息
  23. private String getManagerInfo(Manager manager){
  24. String basicInfo = this.getBasicInfo(manager);
  25. String otherInfo = "业绩:"+manager.getPerformance() + "t";
  26. return basicInfo + otherInfo;
  27. }
  28. //组装出普通员工信息
  29. private String getCommonEmployee(CommonEmployee commonEmployee){
  30. String basicInfo = this.getBasicInfo(commonEmployee);
  31. String otherInfo = "工作:"+commonEmployee.getJob()+"t";
  32. return basicInfo + otherInfo;
  33. }
  34. }