Boss.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
- package com.company.section1;
- import java.util.ArrayList;
- /**
- * @author cbf4Life cbf4life@126.com
- * I'm glad to share my knowledge with you all.
- * 老板来看项目信息了
- */
- public class Boss {
- public static void main(String[] args) {
- //定义一个List,存放所有的项目对象
- ArrayList<IProject> projectList = new ArrayList<IProject>();
-
- //增加星球大战项目
- projectList.add(new Project("星球大战项目",10,100000));
- //增加扭转时空项目
- projectList.add(new Project("扭转时空项目",100,10000000));
- //增加超人改造项目
- projectList.add(new Project("超人改造项目",10000,1000000000));
-
- //这边100个项目
- for(int i=4;i<104;i++){
- projectList.add(new Project("第"+i+"个项目",i*5,i*1000000));
- }
-
- //遍历一下ArrayList,把所有的数据都取出
- for(IProject project:projectList){
- System.out.println(project.getProjectInfo());
- }
-
- }
- }