打字猴:1.700467013e+09
1700467013 this.cost=cost;
1700467014
1700467015 }
1700467016
1700467017 //增加项目
1700467018
1700467019 public void add(String name,int num,int cost){
1700467020
1700467021 this.projectList.add(new Project(name,num,cost));
1700467022
1700467023 }
1700467024
1700467025 //得到项目的信息
1700467026
1700467027 public String getProjectInfo(){
1700467028
1700467029 String info=””;
1700467030
1700467031 //获得项目的名称
1700467032
1700467033 info=info+“项目名称是:”+this.name;
1700467034
1700467035 //获得项目人数
1700467036
1700467037 info=info+”\t项目人数:”+this.num;
1700467038
1700467039 //项目费用
1700467040
1700467041 info=info+”\t项目费用:”+this.cost;
1700467042
1700467043 return info;
1700467044
1700467045 }
1700467046
1700467047 //产生一个遍历对象
1700467048
1700467049 public IProjectIterator iterator(){
1700467050
1700467051 return new ProjectIterator(this.projectList);
1700467052
1700467053 }
1700467054
1700467055 }
1700467056
1700467057 通过构造函数,传递了一个项目所必须的信息,然后通过iterator()方法,把所有项目都返回到一个迭代器中。Iterator()方法看不懂不要紧,继续向下阅读。再看IProjectIterator接口,如代码清单20-6所示。
1700467058
1700467059 代码清单20-6 项目迭代器接口
1700467060
1700467061 public interface IProjectIterator extends Iterator{
1700467062
[ 上一页 ]  [ :1.700467013e+09 ]  [ 下一页 ]