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

便利Map集合

时间:2018-09-14 23:18:16      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:put   pre   ==   integer   list   color   方法   arraylist   string   

用KeySet()方法;

Map<Integer, String> map = new HashMap<Integer, String>();
        map.put(01, "a");
        map.put(02, "b");
        map.put(03, "c");
        map.put(04, "d");
        Set set = map.keySet();
        ArrayList<Integer> list = new  ArrayList<Integer>(set);
        for (int i = 0; i < list.size(); i++) {
            int s = list.get(i);
            System.out.println(s);
            Object o = map.get(s);
            System.out.println(o);
            System.out.println("==");

 

便利Map集合

标签:put   pre   ==   integer   list   color   方法   arraylist   string   

原文地址:https://www.cnblogs.com/wzs9/p/9649096.html

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