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

42次阅读
没有评论

共计 808 个字符,预计需要花费 3 分钟才能阅读完成。

在 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()方法获取键和值。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-09发表,共计808字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)