java for循环遍历hashmap
时间: 2023-09-03 19:11:23 浏览: 169
HashMap遍历
5星 · 资源好评率100%
当使用Java的for循环来遍历HashMap时,我们需要使用Map.Entry来获取键值对。以下是一个示例代码:
```java
HashMap<String, Integer> hashMap = new 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();
System.out.println("Key: " + key + ", Value: " + value);
}
```
在上面的示例中,我们首先创建了一个HashMap,并向其中添加了一些键值对。然后,我们使用`entrySet()`方法获取HashMap中的所有键值对集合。在for循环中,我们使用`Map.Entry`来声明一个变量`entry`,然后通过`getKey()`和`getValue()`方法分别获取键和值。最后,我们可以根据需要对键值对进行操作,这里只是简单地将它们打印出来。
运行上述代码将输出:
```
Key: A, Value: 1
Key: B, Value: 2
Key: C, Value: 3
```
这样就完成了使用for循环遍历HashMap的过程。希望对你有所帮助!如果你还有其他问题,请随时提问。
阅读全文