码迷,mamicode.com
首页 > 其他好文 > 详细

map的遍历

时间:2019-12-19 17:42:17      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:set   keyset   str   try   code   pre   out   key   val   

 

JDK8推荐使用

 

map.forEach((K, V) -> {
System.out.println("Key : " + K);
System.out.println("Value : " + V);
});

 

 

 foreach推荐使用

 

for (Map.Entry<String, String> entry : map.entrySet()) {
System.out.println("Key : " + entry.getKey());
System.out.println("Value : " + entry.getValue());
}

 

 

不推荐使用

 

for (String key : map.keySet()) {
System.out.println("Key : " + key);
System.out.println("Value : " + map.get(key));
}

map的遍历

标签:set   keyset   str   try   code   pre   out   key   val   

原文地址:https://www.cnblogs.com/leeego-123/p/12069053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!