In this tutorial we will see how to use the iterator interface with List. We will create an example to display the contents of the List.
In this tutorial we will see how to use the iterator interface with List. We will create an example to display the contents of the List.
import java.util.*;public class list { public static void main(String[] args) { List l = new ArrayList(); for (int i = 1; i < 6; i++) { l.add(i); } Iterator it = l.iterator(); while (it.hasNext()) { System.out.println(it.next()); } } }
Output :
1 2 3 4 5