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

迭代器遍历Map、List、Set

时间:2018-08-07 01:30:10      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:integer   ring   try   arraylist   ext   hashmap   while   div   list   

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

标签:integer   ring   try   arraylist   ext   hashmap   while   div   list   

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

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