HashMap<String, Integer> map = new HashMap<>();
HashMap<String, Integer> map = new HashMap<>(16, 0.75f);
HashMap<String, Integer> map = new HashMap<>();
map.put("A", 1);
map.put("B", 2);
map.put("C", 3);
Map<String, Integer> map = Collections.singletonMap("key", value);