遍历set

遍历list:http://blog.csdn.net/broccoli2/article/details/73368913

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);
        }


    }

}
全部评论

相关推荐

字节 飞书绩效团队 (n+2) * 15 + 1k * 12 + 1w
点赞 评论 收藏
分享
10-17 12:16
同济大学 Java
7182oat:快快放弃了然后发给我,然后让我也泡他七天最后再拒掉,狠狠羞辱他一把😋
点赞 评论 收藏
分享
努力学习的小绵羊:我反倒觉得这种挺好的,给不到我想要的就别浪费大家时间了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务