首页 > 其他 > 详细

Map遍历效率 : entrySet > keySet

时间:2015-11-18 22:55:26      阅读:334      评论:0      收藏:0      [点我收藏+]
 1    //entrySet()
 2     for (Entry<String, String> entry : map.entrySet()) {
 3         String key = entry.getKey();
 4         String value = entry.getValue();
 5         System.out.println(key + " : " + value);
 6     }
 7     
 8     //上下对比
 9     
10     //keySet()
11     for (String key : map.keySet()) {
12     String value = map.get(key);
13     System.out.println(key + " : " + value);
14     }   

Map遍历效率 : entrySet > keySet

原文:http://www.cnblogs.com/bilaisheng/p/4976074.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!