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

【去除集合中字符串的重复值-3】

时间:2019-01-31 13:27:28      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:iterator   str   new   while   public   []   import   string   ati   

package com.yjf.esupplier.common.test;

import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;

/**
 * @author shusheng
 * @description
 * @Email shusheng@yiji.com
 * @date 2018/12/12 17:11
 */
public class ArrayListDemo2 {

    public static void main(String[] args) {

        ArrayList array = new ArrayList();
        array.add("hello");
        array.add("world");
        array.add("world");
        array.add("world");
        array.add("java");
        array.add("java");
        array.add("hello");
        array.add("hello");
        array.add("software");

        HashSet hs = new HashSet();
        hs.addAll(array);

        Iterator it = hs.iterator();
        while(it.hasNext()){
            System.out.println(it.next());
        }

    }

}

 

【去除集合中字符串的重复值-3】

标签:iterator   str   new   while   public   []   import   string   ati   

原文地址:https://www.cnblogs.com/zuixinxian/p/10340840.html

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