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.
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.
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