共计 808 个字符,预计需要花费 3 分钟才能阅读完成。
在 Java 中,可以使用迭代器或者增强 for 循环来遍历哈希表。
- 使用迭代器遍历哈希表:
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);
}
- 使用增强 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 网 – 提供最优质的资源集合!
正文完