91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java哈希表遍歷的方法是什么

小億
95
2023-12-08 14:45:44
欄目: 編程語言

在Java中,可以使用迭代器或者增強for循環來遍歷哈希表。

  1. 使用迭代器遍歷哈希表:
HashMap<String, Integer> hashMap = new 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();
    System.out.println("Key: " + key + ", Value: " + value);
}
  1. 使用增強for循環遍歷哈希表:
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到哈希表
hashMap.put("A", 1);
hashMap.put("B", 2);
hashMap.put("C", 3);

// 使用增強for循環遍歷哈希表
for (Map.Entry<String, Integer> entry : hashMap.entrySet()) {
    String key = entry.getKey();
    Integer value = entry.getValue();
    System.out.println("Key: " + key + ", Value: " + value);
}

無論是使用迭代器還是增強for循環,都可以遍歷哈希表中的鍵值對,并通過getKey()getValue()方法獲取鍵和值。

0
眉山市| 九江县| 噶尔县| 开原市| 栾川县| 陆河县| 团风县| 那坡县| 寻乌县| 梅河口市| 崇礼县| 黔南| 古丈县| 禹城市| 墨玉县| 会同县| 玛曲县| 临邑县| 揭阳市| 定陶县| 高州市| 皮山县| 祥云县| 吕梁市| 甘南县| 亳州市| 南汇区| 丰城市| 商河县| 桐城市| 长子县| 沽源县| 伊通| 托里县| 金昌市| 长兴县| 宜兴市| 怀安县| 始兴县| 尼勒克县| 牟定县|