Home Tutorial Java Iterator Java Map Iterate

 
 

Java Map Iterate
Posted on: November 4, 2009 at 12:00 AM
In this section of tutorial we will learn how to use the Map with the Iterator interface. We will create an example to display the contents of the map using Iterator

  • Map is an Interface in the Collection Framework.
  • Map is implemented by its two sub classes
    • HashMap
    • Treemap
  • Map has no iterator method.
  • So use the entrySet() method.It returns the data as Set


Example of Java Map Iterate
import java.util.*;

public class map1 {
	public static void main(String[] args) {
		Map map = new TreeMap();
		char grade[] = { 'a', 'b', 'c', 'd' };
		int x = 1;

		for (char c : grade) {
			map.put(x, c);
			x++;
		}
		Set s = map.entrySet();
		Iterator i = s.iterator();
		while (i.hasNext()) {
			System.out.println(i.next());
		}
	}
}

Output :

1=a 2=b 3=c 4=d

Related Tags for Java Map Iterate:


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.