Project.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. public class Project implements IProject {
  8. //项目名称
  9. private String name = "";
  10. //项目成员数量
  11. private int num = 0;
  12. //项目费用
  13. private int cost = 0;
  14. //定义一个构造函数,把所有老板需要看到的信息存储起来
  15. public Project(String name,int num,int cost){
  16. //赋值到类的成员变量中
  17. this.name = name;
  18. this.num = num;
  19. this.cost=cost;
  20. }
  21. //得到项目的信息
  22. public String getProjectInfo() {
  23. String info = "";
  24. //获得项目的名称
  25. info = info+ "项目名称是:" + this.name;
  26. //获得项目人数
  27. info = info + "t项目人数: "+ this.num;
  28. //项目费用
  29. info = info+ "t 项目费用:"+ this.cost;
  30. return info;
  31. }
  32. }