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

39_泛型集合的综合应用案例

时间:2015-02-04 12:33:05      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

 

 

//Map迭代方式之一: 得到Entry,Entry实现了Iterator接口

        HashMap<String,Integer> map=new HashMap<String,Integer>();
        map.put("ljl", 26);
        map.put("ly", 21);
        map.put("czbk", 10);
        
        Set<Map.Entry<String,Integer>> entrySet=map.entrySet();
        for(Map.Entry<String, Integer> entry:entrySet){
            System.out.println(entry.getKey() + " : " + entry.getValue());
            /**
             *  ly : 21
                czbk : 10
                ljl : 26
             */
        }

对在jsp页面中也经常要对Set或Map集合进行迭代:

<c:forEach items="${maps}"  var="entry"> 
     ${entry.key}:${entry.value} 
</c:forEach>

39_泛型集合的综合应用案例

标签:

原文地址:http://www.cnblogs.com/qq-757617012/p/4271876.html

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