Leaf.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.  * Leaf是树叶的也是,在这里就是我们这些小兵
  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. }