Java 查询List中的重复值

查询List中重复值

 

public class Test {

    public static void main(String[] args) {

        List strings = new ArrayList<>();
        strings.add("1");
        strings.add("2");
        strings.add("2");
        strings.add("3");
        strings.add("3");
        strings.add("3");

        Set set = new HashSet<>();
        Set exist = new HashSet<>();

        for (String s : strings) {
            if (set.contains(s)) {
                exist.add(s);
            } else {
                set.add(s);
            }
        }
        System.out.println("重复的值:" + String.join(", ", exist));
    }
    
}

 

你可能感兴趣的:(JAVA,集合,重复值,JAVA)