HashMap maintains key and value pairs and often denoted as HashMap<Key, Value> or HashMap<K, V>. HashMap implements Map interface. HashMap is similar to Hashtable with two exceptions – HashMap methods are unsynchornized and it allows null key and null values unlike Hashtable. It is used for maintaining key and value mapping.
It is not an ordered collection which means it does not return the keys and values in the same order in which they have been inserted into the HashMap. It neither does any kind of sorting to the stored keys and Values. You must need to import
java.util.HashMap
or its super class in order to use the HashMap class and methods.Example:
import java.util.HashMap; import java.util.Map; import java.util.Iterator; import java.util.Set; public class Details { public static void main(String args[]) { /* This is how to declare HashMap */ HashMap<Integer, String> hmap = new HashMap<Integer, String>(); /*Adding elements to HashMap*/ hmap.put(12, "Nabin"); hmap.put(2, "Rabin"); hmap.put(7, "Sabin"); hmap.put(49, "Rashmi"); hmap.put(3, "Kripa"); /* Display content using Iterator*/ Set set = hmap.entrySet(); Iterator iterator = set.iterator(); while(iterator.hasNext()) { Map.Entry mentry = (Map.Entry)iterator.next(); System.out.print("key is: "+ mentry.getKey() + " & Value is: "); System.out.println(mentry.getValue()); } /* Get values based on key*/ String var= hmap.get(2); System.out.println("Value at index 2 is: "+var); /* Remove values based on key*/ hmap.remove(3); System.out.println("Map key and values after removal:"); Set set2 = hmap.entrySet(); Iterator iterator2 = set2.iterator(); while(iterator2.hasNext()) { Map.Entry mentry2 = (Map.Entry)iterator2.next(); System.out.print("Key is: "+mentry2.getKey() + " & Value is: "); System.out.println(mentry2.getValue()); } } }
Output:
key is: 49 & Value is: Rashmi key is: 2 & Value is: Rabin key is: 3 & Value is: Kripa key is: 7 & Value is: Sabin key is: 12 & Value is: Nabin Value at index 2 is: Rabin Map key and values after removal: Key is: 49 & Value is: Rashmi Key is: 2 & Value is: Rabin Key is: 7 & Value is: Sabin Key is: 12 & Value is: Nabin
No comments:
Post a Comment