java中Iterator和Iterable的区别
(1)Iterable接口 (java.lang.Iterable) 是Java集合的顶级接口之一,Iterable接口中只包含一个方法,就是一个iterator()方法,用来返回一个Iterator类型的对象,或者说返回一个实现了Iterator接口的对象。public interface Iterable { Iterator iterator();}(2)p