在Java中,可以使用HashMap
的構(gòu)造方法和put
方法來初始化并賦值一個HashMap
對象。
方法一:使用構(gòu)造方法初始化并賦值
Map<String, Integer> map = new HashMap<String, Integer>() {{
put("key1", 1);
put("key2", 2);
put("key3", 3);
}};
方法二:使用put
方法逐個添加鍵值對
Map<String, Integer> map = new HashMap<>();
map.put("key1", 1);
map.put("key2", 2);
map.put("key3", 3);
這兩種方法都可以初始化并賦值一個HashMap
對象,其中第一種方法使用了雙括號初始化,可以在初始化時直接添加鍵值對,比較簡潔。第二種方法則是逐個添加鍵值對,更加直觀。