Home Tutorial Java Iterator Iterator Java Tutorial

 
 

Iterator Java Tutorial
Posted on: November 4, 2009 at 12:00 AM
In this java tutorial we will see about the iterator interface and its functionality. We will create an example for the Iterator

  • Java Iterator is an interface in the collection framework
  • It traverses through all the elements of the collection.
  • It works like enumeration.
  • It has methods hasNext() and next().
  • List, Set interface has iterator() methods .


Example of Java 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

Related Tags for Iterator Java Tutorial:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.