hashmap declare in jav code example
Example 1: declare hashmap java
//remember to first import java.util.*; first
//you can swap out string or integer for other data types
Map<String, Integer> d = new HashMap<>();
Example 2: java map declaration
Map< String,Integer> hm =
new HashMap< String,Integer>();
hm.put("a", new Integer(100));
hm.put("b", new Integer(200));
hm.put("c", new Integer(300));
hm.put("d", new Integer(400));