In this java tutorial we will see about the iterator interface and its functionality. We will create an example for the Iterator
In this java tutorial we will see about the iterator interface and its functionality. We will create an example for the Iterator
import java.util.*; public class iterator1 { public static void main(String[] args) { List list = new ArrayList(); int ar[] = { 11, 22, 33, 44, 55 }; for (int i = 0; i < ar.length; i++) { list.add(ar[i]); } Iterator i = list.iterator(); while (i.hasNext()) { System.out.print(i.next() + "\t"); } } }
Output
11 22 33 44 55