首页 > 其他 > 详细

迭代器遍历Map、List、Set

时间:2018-08-07 01:17:10      阅读:179      评论:0      收藏:0      [点我收藏+]
1、Map的遍历
    Map<Integer,String> maps=new HashMap<Integer,String>();
    maps.put(1,"a");
    maps.put(2,"b");
    maps.put(3,"c");
    
    Iterator<Map.Entry<Integer,String>> itMap=map.entrySet.iterator();
    while(itMap.hasNext){
        Map.Entry<Integer,String> entry=itMap.next();
        System.out.println(entry.getKey()+","+entry.getValue);    
    }    

2、List的遍历
    List<String> lists=new ArrayList<String>();
    lists.add("a");
    lists.add("b");
    lists.add("c");
    
    Iterator<String> itList=lists.iterator();
    while(itList.hasNext()){
        String value=itList.next();
        System.out.println(value);
    }    

3、Set的遍历
    Set<String> set=HashSet<String>();
    set.add("a");
    set.add("b");
    set.add("c");
    
    Interator itSet=set.interator();
    for(itSet.hasNext()){
        String value=itSet.next();
        System.out.println(value);
    }
        

  

迭代器遍历Map、List、Set

原文:https://www.cnblogs.com/kongnengjing/p/9434339.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!