要獲取HashMap的值,可以使用以下方法:
使用get()方法:通過指定鍵來獲取對應的值。例如:HashMap.get(key)
,其中key為要獲取值的鍵。
遍歷HashMap:使用entrySet()方法獲取HashMap的鍵值對集合,然后遍歷集合獲取每個鍵值對的值。例如:
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加鍵值對
hashMap.put("A", 1);
hashMap.put("B", 2);
hashMap.put("C", 3);
// 遍歷獲取值
for (Map.Entry<String, Integer> entry : hashMap.entrySet()) {
Integer value = entry.getValue();
System.out.println(value);
}
hashMap.values()
。以上是獲取HashMap值的幾種常用方法,可以根據具體需求選擇使用。