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

软件工程

开发平台:

Java

  1. package com.company.section1;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 经理级人物
  6.  */
  7. public class Manager extends Employee {
  8. //这类人物的职责非常明确:业绩
  9. private String performance;
  10. public String getPerformance() {
  11. return performance;
  12. }
  13. public void setPerformance(String performance) {
  14. this.performance = performance;
  15. }   
  16. protected String getOtherInfo(){
  17. return "业绩:"+ this.performance + "t";
  18. }
  19. }