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

软件工程

开发平台:

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. @SuppressWarnings("all")
  8. public class Leaf implements ILeaf {
  9. //叶子叫什么名字
  10. private String name = "";
  11. //叶子的职位
  12. private String position = "";
  13. //叶子的薪水
  14. private int salary=0;
  15. //通过构造函数传递信息
  16. public Leaf(String name,String position,int salary){
  17. this.name = name;
  18. this.position = position;
  19. this.salary = salary;
  20. }
  21. //最小的小兵只能获得自己的信息了
  22. public String getInfo() {
  23. String info = "";
  24. info = "名称:" + this.name;
  25. info = info + "t职位:"+ this.position;
  26. info = info + "t薪水:"+this.salary;
  27. return info;
  28. }
  29. }