HashMap的遍历方法有以下几种:
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到HashMap...
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();
// 处理每个键值对
}
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到HashMap...
for (Map.Entry<String, Integer> entry : hashMap.entrySet()) {
String key = entry.getKey();
Integer value = entry.getValue();
// 处理每个键值对
}
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到HashMap...
hashMap.forEach((key, value) -> {
// 处理每个键值对
});
需要注意的是,HashMap的遍历顺序并不是固定的,因为HashMap并不保证存储元素的顺序。如果需要按照特定的顺序遍历HashMap,可以考虑使用LinkedHashMap等按插入顺序或访问顺序排序的Map实现类。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: Java中hashmap遍历输出的方法是什么