Iterable
接口 (java.lang.Iterable
) 是Java集合的顶级接口之一。Collection
接口继承Iterable
,所以Collection
的所有子类也实现了Iterable
接口。
一个实现Iterable
接口的类可以使用新的for循环,下面是一个示例:
List list = new ArrayList(); for(Object o : list){ //do something o; }
Iterable
接口只有一个方法:
public interface Iterable<T> { public Iterator<T> iterator(); }
怎么去实现Iterable
接口以便可以使用新的for循环,在我Java泛型教程的这篇文章中Implementing the Iterable Interface可以找到解释。
时间: 2024-10-30 17:26:51