在Java中,使用entrySet()
方法可以獲取Map中的所有鍵值對。該方法返回一個Set<Map.Entry<K, V>>
對象,其中K
是鍵的類型,V
是值的類型。
下面是使用entrySet()
方法的示例代碼:
Map<String, Integer> map = new HashMap<>();
map.put("A", 1);
map.put("B", 2);
map.put("C", 3);
Set<Map.Entry<String, Integer>> entrySet = map.entrySet();
for (Map.Entry<String, Integer> entry : entrySet) {
String key = entry.getKey();
Integer value = entry.getValue();
System.out.println("Key: " + key + ", Value: " + value);
}
在上面的示例代碼中,首先創建了一個HashMap對象,并向其添加了幾個鍵值對。然后,使用entrySet()
方法獲取Map中的所有鍵值對,并將其存儲在一個Set<Map.Entry<K, V>>
對象中。
接下來,通過迭代遍歷entrySet
中的每個Map.Entry
對象,可以獲取每個鍵值對的鍵和值。在示例代碼中,使用getKey()
方法獲取鍵,使用getValue()
方法獲取值,并將它們打印出來。
運行以上代碼,將會輸出:
Key: A, Value: 1
Key: B, Value: 2
Key: C, Value: 3
可以看到,通過使用entrySet()
方法,我們可以很方便地遍歷Map中的所有鍵值對。