package java.lang;
import java.util.Iterator; public interface Iterable<T> { Iterator<T> iterator();}
Iterable位于java.lang包中,它持有一个Iterator引用
package java.util; public interface Iterator<E> { boolean hasNext(); E next(); void remove();}
Iterator也是一个接口,包含三个方法,hasNext, next, remove
public interface Collection<E> extends Iterable<E> {}
java.util.Collection继承自java.lang.Iterable, jdk的作者为什么要这么设计,为什么Collection接口不直接从Iterator继承?
其实这也是一种设计模式:Iterator设计模式
为什么这么设计,如果Collection直接从Iterator继承,那么Collection的实现类必须直接实现hasNext, next, remove方法。
1.这么做会造成代码混乱,迭代代码与Collection本身实现代码混淆在一起,造成阅读困难,而且有方法重复,比如remove,不能做到迭代与本身实现分离
2.在Collection实现类中必须包含当前cursor指针,在并发时处理相当尴尬
3.访问接口不统一,Collection从Iterable继承的话,在迭代时只需拿到其Iterator(内部类实现),用统一的对象迭代,而且多个迭代器可以做到互不干扰
时间: 2024-12-13 20:04:36