andy's blog

记录我的所做所思

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  1 Posts :: 13 Stories :: 0 Comments :: 0 Trackbacks

一:
     聚集的方式有多种(Vector,ArrayList,Queue,HashSet,Array)等,对存取删对象的方式各不相同,为了统一接口,使用Iterator模式,客户端和具体Collection中间增加一层Iterator。

public   class  ArrayIterator  implements  Iterator  {
    
private  Object[] arr;
    
private   int  index = 0 ;
    
public  ArrayIterator(Object[] arr)  {
        
this .arr  =  arr;
    }

    
public   boolean  hasNext()  {
        
        
return  index < arr.length ? true : false ;
    }

    
public  Object next()  {

        
return  arr[index ++ ];
    }

}
这样数组也有了Iterator接口,客户端不用管是用数组存的对象还是List,都用Iterator的方法统一处理。

  The Iterator Pattern provides a way to access the elements of an aggregate object sequentially without exposing its underlying representation.
posted on 2006-03-30 16:33 zhoumin 阅读(103) 评论(0)  编辑  收藏 所属分类: 设计模式

只有注册用户登录后才能发表评论。


网站导航: