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

取出所有的Map集合

时间:2017-09-19 11:24:42      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:main   put   size   class   shm   16px   bsp   val   oid   

 1     public static void main(String[] args) {
 2 
 3         Map<Integer, String> map = new HashMap<Integer, String>();
 4 
 5         map.put(8, "liusan");
 6 
 7         map.put(2, "liliu");
 8 
 9         map.put(3, "wuusan");
10 
11         map.put(1, "zhangqi");
12 
13         // 取出map中的所有元素。通过Keyset获取map中所有键的set集合,再通过Set的迭代器获取每一个键,再获取每一个键的值
14 
15         Set keySet = map.keySet();
16         
17         for (Iterator iterator = keySet.iterator(); iterator.hasNext();) {
18             Integer key = (Integer) iterator.next();
19             String value = map.get(key);
20             System.out.println(key + ":" + value);
21         }
22 
23     }
 调试输出:
1:zhangqi
2:liliu
3:wuusan
8:liusan

取出所有的Map集合

标签:main   put   size   class   shm   16px   bsp   val   oid   

原文地址:http://www.cnblogs.com/suiyisuixing/p/7549979.html

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