❮ ArrayList Methods
ListIteratorDefinition and Usage
The listIterator() method returns a ListIterator for the list.
To learn how to use iterators, see our Java Iterator tutorial .
The ListIterator differs from an Iterator in that it can also traverse the list backwards.
Syntax
public ListIterator listIterator()Technical Details
| Returns: | A ListIterator object. |
|---|