您的位置:首页 > 编程语言 > Java开发

Enumeration, Iterator and ListIterator in Java

2016-07-14 12:58 591 查看
Both Enumeration and Iterator are interfaces in Java for getting successive elements. Enumeration is older while iterator was introduced later with some improvements. So it is preferred to use Iterator, but we will see Enumeration as well quickly.

Enumeration Vs Iterator In Java



Enumeration interface

Enumeration interface has two methods:

hasMoreElements()
nextElement()


Iterator interface

Iterators differ from enumerations by adding an optional remove operation, and having shorter method names.

Methods of Iterator are:

hasNext()
next()
remove()


Iterator is the super interface for the Collection interface.

The Iterable interface with only one method for returning an Iterator.

Iterator is considered more secure and safe because it does not allow other thread to modify the collection object while some thread is iterating over it and throws ConcurrentModificationException in such cases.

Iterators vs. Enumerations

Iterator has taken the place of Enumeration in the Java collections framework.

Iterator is considered more secure and safe.

Java Specification recommends new implementations to consider using Iterator in preference to Enumeration as the functionality of Enumeration interface is duplicated by the Iterator interface with major improvements.

Enumerations might be faster compared to Iterators due to their read only nature. Still it would be better to go with Iterators as it is the Java recommendation. StringTokenizer is one method in Java that still uses Enumeration.

ListIterator

ListIterator is a sub-interface of Iterator.

ListIterator allows the programmer to traverse the list in either direction, modify the list during iteration, and obtain the iterator’s current position in the list.

A ListIterator has no current element; its cursor position always lies between the element that would be returned by a call to previous() and the element that would be returned by a call to next().

The java.util.List has a listIterator() method that returns a listIterator over the elements in this list (in proper sequence).

Methods of a ListIterator are:

add(E e)
hasNext()
hasPrevious()
next(), returns E
nextIndex()
previous(), returns E
previousIndex()
remove()
set(E e)


Note that E is a generic type and any type can be specified.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  java iterator im