中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

hashmap怎么遍歷

小億
84
2024-01-11 07:42:03
欄目: 編程語言

遍歷HashMap可以使用以下幾種方法:

  1. 使用Iterator遍歷:
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到HashMap
hashMap.put("A", 1);
hashMap.put("B", 2);
hashMap.put("C", 3);

Iterator<Map.Entry<String, Integer>> iterator = hashMap.entrySet().iterator();
while (iterator.hasNext()) {
    Map.Entry<String, Integer> entry = iterator.next();
    String key = entry.getKey();
    Integer value = entry.getValue();
    // 在這里處理key和value
}
  1. 使用For-Each循環遍歷:
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到HashMap
hashMap.put("A", 1);
hashMap.put("B", 2);
hashMap.put("C", 3);

for (Map.Entry<String, Integer> entry : hashMap.entrySet()) {
    String key = entry.getKey();
    Integer value = entry.getValue();
    // 在這里處理key和value
}
  1. 遍歷所有的Key:
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到HashMap
hashMap.put("A", 1);
hashMap.put("B", 2);
hashMap.put("C", 3);

for (String key : hashMap.keySet()) {
    Integer value = hashMap.get(key);
    // 在這里處理key和value
}
  1. 遍歷所有的Value:
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到HashMap
hashMap.put("A", 1);
hashMap.put("B", 2);
hashMap.put("C", 3);

for (Integer value : hashMap.values()) {
    // 在這里處理value
}

請根據具體的需求選擇合適的遍歷方法。

0
庆阳市| 固镇县| 科技| 绥滨县| 林口县| 平潭县| 响水县| 彭阳县| 岳阳县| 望都县| 新宁县| 仪征市| 石首市| 甘谷县| 化德县| 云霄县| 田林县| 民乐县| 霸州市| 五大连池市| 长垣县| 高雄县| 娄烦县| 定兴县| 穆棱市| 临漳县| 报价| 大宁县| 牙克石市| 隆化县| 巴青县| 荔浦县| 介休市| 垫江县| 即墨市| 邯郸市| 策勒县| 邳州市| 泾阳县| 太仆寺旗| 河池市|