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

Map遍历效率 : entrySet > keySet

时间:2015-11-18 22:58:04      阅读:180      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!