Home Tutorial Java Iterator Iterator Java Sample

 
 

Iterator Java Sample
Posted on: November 4, 2009 at 12:00 AM
In this section of tutorial we will learn how to create a sample java application using iterator.We will create an example to display the contents of the ArrayList using iterator

  • Java Sample Iterator interface makes the traversing of the elements easy.
  • It works similar to the Enumeration.
  • It has method next() and haswNext()


Java Sample Iterator Example

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Random;

public class sample {

	public static void main(String[] args) {
		List list = new ArrayList();
		for (int i = 0; i < 5; i++) {
			list.add((float)Math.random() * 100);
		}
		Iterator i = list.iterator();
		while (i.hasNext()) {
			System.out.print(i.next() + "\t");
		}
	}
}

Output :

20.235153 18.181171 13.668783 54.82365 93.62838

Related Tags for Iterator Java Sample:


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.