要遍歷map,可以使用不同的方法,以下是一些常見的方法:

1、使用for-each循環和entrySet()方法,這種方法可以遍歷Map中的所有鍵值對,包括重復的鍵值對,示例代碼如下:

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()) {
    System.out.println("Key: " + entry.getKey() + ", Value: " + entry.getValue());
}

2、使用for-each循環和keySet()方法,這種方法只能遍歷Map中的鍵,不能遍歷值,示例代碼如下:

Map<String, Integer> map = new HashMap<>();
map.put("a", 1);
map.put("b", 2);
map.put("c", 3);
for (String key : map.keySet()) {
    System.out.println("Key: " + key);
}

3、使用for-each循環和values()方法,這種方法可以遍歷Map中的值,但不能遍歷鍵,示例代碼如下:

Map<String, Integer> map = new HashMap<>();
map.put("a", 1);
map.put("b", 2);
map.put("c", 3);
for (Integer value : map.values()) {
    System.out.println("Value: " + value);
}
免責聲明:
本網站致力于提供合理、準確、完整的資訊信息,但不保證信息的合理性、準確性和完整性,且不對因信息的不合理、不準確或遺漏導致的任何損失或損害承擔責任。本網站所有信息僅供參考,不做交易和服務的根據, 如自行使用本網資料發生偏差,本站概不負責,亦不負任何法律責任。