迭代器(接口):
Iterator: 是接口collection 中的方法,collection的子类中都可以使用,在JDK1.2之后出现的专门用于遍历集合的迭代器对象
创建一次Iterator对象,只能遍历一次
Listiterator: 是接口 List中的方法,List的子类都可以使用。
创建一次Iterator对象,只能遍历一次
可以从后往前遍历(hasPrevious previous),但是必须先执行一次从前往后遍历
Enumeration :在JDK1.0的时候,Vector集合使用需要进行遍历。
(hasMoreElements nextElement)
|
|