Iterable<E> Iterator<E>

接口 Collection<E> 继承 Iterable<E>

   public interface Collection<E> extends Iterable<E>

 方法 

  Iterator<E> iterator();

接口 Iterable<T>

方法

  Iterator<E> iterator();

接口 Iterator<E>

  public interface Iterator<E>

方法 

boolean hasNext()
E next()
void remove()

collection 继承 iterable, 其中一个方法是 iterator() 返回 Iterator<E>, Iterator<E> 迭代 调用 hasNext() 如果返回 true 证明有下一个 没到结尾,调用 next() 返回 E,如果要删除 调用 remove();


posted on 2016-06-15 01:02  一値很安靜;︶  阅读(362)  评论(0编辑  收藏  举报

导航