溫馨提示×

java怎么遍歷map集合獲取值

小億
127
2023-11-04 20:02:45
欄目: 編程語言

在Java中,可以使用不同的方式遍歷Map集合并獲取值,以下是幾種常見的方法:

  1. 使用Map的keySet()方法遍歷:
Map<String, Integer> map = new HashMap<>();
map.put("a", 1);
map.put("b", 2);
map.put("c", 3);

for (String key : map.keySet()) {
    Integer value = map.get(key);
    System.out.println("Key: " + key + ", Value: " + value);
}
  1. 使用Map的entrySet()方法遍歷:
Map<String, Integer> map = new HashMap<>();
map.put("a", 1);
map.put("b", 2);
map.put("c", 3);

for (Map.Entry<String, Integer> entry : map.entrySet()) {
    String key = entry.getKey();
    Integer value = entry.getValue();
    System.out.println("Key: " + key + ", Value: " + value);
}
  1. 使用Java 8的Stream API遍歷:
Map<String, Integer> map = new HashMap<>();
map.put("a", 1);
map.put("b", 2);
map.put("c", 3);

map.forEach((key, value) -> System.out.println("Key: " + key + ", Value: " + value));

這些方法可以根據(jù)具體的需求選擇合適的方式進行遍歷和獲取值。

0