Home Tutorial Java Iterator Java HashMap iterator and example

 
 

Java HashMap iterator and example
Posted on: November 3, 2009 at 12:00 AM
In this Java tutorial, we will see how to use the iterator interface with HashMap. We will create an example to display the contents of the HashMap.

  • Java HashMap Iterator is an interface. It keeps the data in the key and value form.
  • It is implemented by HashMap. hashMap doesnot have iterator method.
  • So use the entrySet() method to get the data in Set object form.
  • Set's all elements can be traversed by the Iterator.


Example of Java HashMap Iterator
import java.util.*;

public class hashmap {
	public static void main(String[] args) {
		HashMap hash = new HashMap();
		hash.put("roll", new Integer(12));
		hash.put("name", "jack");
		hash.put("age", 22);
		Set s = hash.entrySet();
		Iterator i = s.iterator();
		while (i.hasNext()) {
			System.out.println(i.next());
		}
	}
}

Output

roll=12 age=22 name=jack

Related Tags for Java HashMap iterator and example:


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.