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

set的三种遍历方式-----不能用for循环遍历(无序)

时间:2018-02-06 01:15:00      阅读:359      评论:0      收藏:0      [点我收藏+]

标签:pre   ref   arraylist   rgs   system   for循环   class   ane   asn   

set的三种遍历方式,set遍历元素

list 遍历元素 
http://blog.csdn.net/sunrainamazing/article/details/71577662 
set遍历元素 
http://blog.csdn.net/sunrainamazing/article/details/71577893 
map遍历元素 
http://blog.csdn.net/sunrainamazing/article/details/71580051

package sun.rain.amazing.traversal;

import java.util.*;

/**
 * Created by sunRainAmazing on SUN_RAIN_AMAZING
 * @author sunRainAmazing
 */
public class TraversalSet {
    public static void main(String args[]){

        List<String> list = new ArrayList<>(
            Arrays.asList("tom","cat","Jane","jerry"));
        Set<String> set = new HashSet<>();
        set.addAll(list);



        //方法1 集合类的通用遍历方式, 从很早的版本就有, 用迭代器迭代
        Iterator it1 = set.iterator();
        while(it1.hasNext()){
            System.out.println(it1.next());
        }



        //方法2 集合类的通用遍历方式, 从很早的版本就有, 用迭代器迭代
        for(Iterator it2 = set.iterator();it2.hasNext();){
            System.out.println(it2.next());
        }



        //方法3 增强型for循环遍历
        for(String value: set){
            System.out.println(value);
        }


    }

}

set的三种遍历方式-----不能用for循环遍历(无序)

标签:pre   ref   arraylist   rgs   system   for循环   class   ane   asn   

原文地址:https://www.cnblogs.com/Pjson/p/8419747.html

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