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

map的遍历方式

时间:2017-12-28 21:31:12      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:integer   gpo   post   new   迭代   hashmap   entry   适合   数据   

Map<Integer, String> map = new HashMap<Integer, String>();
map.put(1, "a");
map.put(2, "b");
map.put(3, "ab");
map.put(4, "ab");
map.put(4, "abc");

1、
for(Integer in:map.keySet()) {
String s = map.get(in);
System.out.println(s);
}

2、使用迭代器
Iterator<Entry<Integer, String>> iterator = map.entrySet().iterator();
while(iterator.hasNext()) {
Entry<Integer, String> entry = iterator.next();
System.out.println(entry.getKey());
}

3、适合大数据量
for (Entry<Integer, String> e : map.entrySet()) {
System.out.println(e.getValue());
}

4、顺序读取map的值
for (String v : map.values()) {
System.out.println(v);
}

map的遍历方式

标签:integer   gpo   post   new   迭代   hashmap   entry   适合   数据   

原文地址:https://www.cnblogs.com/ouyangping/p/8137456.html

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