欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

遍历HashMap的四种方法

时间:2023-06-08
创建HashMap集合

HashMap hashMap = new HashMap<>(16);hashMap.put(1, "a");hashMap.put(2, "b");hashMap.put(3, "c");

keySet()

使用keySet()方法,先遍历键,再取出值

for (Integer key : hashMap.keySet()) { System.out.println("key=" + key + ",value=" + hashMap.get(key));}

values()

使用values()方法,直接遍历值

for (String value : hashMap.values()) { System.out.println(value);}

entrySet()

使用entrySet()方法,然后通过getKey()和getValue()分别取键和值

for (Map.Entry entry : hashMap.entrySet()) { System.out.println("key=" + entry.getKey() + ",value=" + entry.getValue());}

ForEach()

通过ForEach()方法直接遍历

hashMap.forEach((key, value) -> System.out.println(key + "," + value));

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。