Programming Tutorials

Comment on Tutorial - How to use Iterator in Java By Fazal



Comment Added by : Dwight

Comment Added at : 2011-07-13 22:13:45

Comment on Tutorial : How to use Iterator in Java By Fazal
Also note that for reverse ordering, If you have a Collection that implements either Deque (like LinkedList) or SortedSet (like TreeSet), you can get a reverse iterator (in Java 6) with the descendingIterator() method.

View Tutorial