遍历HashMap的四种方法

创建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()方法,然后

遍历HashMap的四种方法最先出现在Python成神之路

版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/18977.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>