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

软件工程

开发平台:

Java

  1. package com.company.section1;
  2. import java.util.ArrayList;
  3. /**
  4.  * @author cbf4Life cbf4life@126.com
  5.  * I'm glad to share my knowledge with you all.
  6.  * 老板来看项目信息了 
  7.  */
  8. public class Boss {
  9. public static void main(String[] args) {
  10. //定义一个List,存放所有的项目对象
  11. ArrayList<IProject> projectList = new ArrayList<IProject>();
  12. //增加星球大战项目
  13. projectList.add(new Project("星球大战项目",10,100000));
  14. //增加扭转时空项目
  15. projectList.add(new Project("扭转时空项目",100,10000000));
  16. //增加超人改造项目
  17. projectList.add(new Project("超人改造项目",10000,1000000000));
  18. //这边100个项目
  19. for(int i=4;i<104;i++){
  20. projectList.add(new Project("第"+i+"个项目",i*5,i*1000000));
  21. }
  22. //遍历一下ArrayList,把所有的数据都取出
  23. for(IProject project:projectList){
  24. System.out.println(project.getProjectInfo());
  25. }
  26. }
  27. }