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

Map

时间:2016-05-05 12:35:51      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

    public static void main(String[] args) {
        List<Map<Integer, String>> m = new ArrayList<Map<Integer,String>>();
        Map<Integer, String> i = new HashMap<Integer, String>();//    {1=1, 111=111, 1111=1111, 11=11}
        i.put(1, "1");
        i.put(11, "11");
        i.put(111, "111");
        i.put(1111, "1111");
        Map<Integer, String> ii = new HashMap<Integer, String>();//    {1=1, 111=111, 1111=1111, 11=11}
        ii.put(1, "1");
        ii.put(11, "11");
        ii.put(111, "111");
        ii.put(1111, "1111");
        m.add(i);
        m.add(ii);//    [{1=1, 111=111, 1111=1111, 11=11}, {1=1, 111=111, 1111=1111, 11=11}]
    }

 

Map

标签:

原文地址:http://www.cnblogs.com/yaowen/p/5461190.html

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