java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Java判断两个集合有交集

Java判断两个集合是否具有交集及如何获得交集详解

作者:Percep_gan

这篇文章主要给大家介绍了关于Java判断两个集合是否具有交集及如何获得交集的相关资料,文中通过图文以及实例代码介绍的非常详细,对大家的学习或者工作具有一定的参考借鉴价值,需要的朋友可以参考下

一、Java判断两个集合是否具有交集

1、Collections.disjoint

全限定名为java.util.Collections,在俩个集合没有交集的时候会返回true,否则返回false。

比如:

List<String> firstList = Arrays.asList("teacher", "worker", "student");
List<String> secondList = Arrays.asList("user", "admin");
if (Collections.disjoint(firstList, secondList)) {
    System.out.println("Collections.disjoint方法:firstList、secondList没有交集");
}

结果:

2、CollectionUtils.containsAny

全限定名为:org.apache.commons.collections.CollectionUtils,两个集合有交集会返回true,否则会返回false,跟Collections.disjoint相反。

例如:

List<String> firstList = Arrays.asList("teacher", "worker", "student");
List<String> secondList = Arrays.asList("user", "admin");
if (CollectionUtils.containsAny(firstList, secondList)) {
    System.out.println("CollectionUtils.containsAny方法:firstList、secondList有交集");
} else if (!CollectionUtils.containsAny(firstList, secondList)) {
    System.out.println("CollectionUtils.containsAny方法:firstList、secondList没有交集");
}

结果:

3、CollectionUtil.containsAny

全限定名为:cn.hutool.core.collection.CollectionUtil,两个集合有交集会返回true,否则会返回false,跟Collections.disjoint相反。

比如:

 List<String> firstList = Arrays.asList("teacher", "worker", "student");
 List<String> secondList = Arrays.asList("user", "admin");
 if (CollectionUtil.containsAny(firstList, secondList)) {
     System.out.println("CollectionUtil.containsAny方法:firstList、secondList有交集");
 } else if (!CollectionUtil.containsAny(firstList, secondList)) {
     System.out.println("CollectionUtil.containsAny方法:firstList、secondList没有交集");
 }

结果:

4、使用Java8的新特性

Java8中有两种方式可以得到两个集合是否有交集,如下:

List<String> firstList = Arrays.asList("teacher", "worker", "student");
List<String> secondList = Arrays.asList("user", "admin");
//方式一
//List<String> resultList = firstList.stream().filter((firstItem) -> secondList.contains(firstItem)).collect(Collectors.toList());
//方式二
List<String> resultList = firstList.stream().filter(secondList::contains).collect(Collectors.toList());
if (resultList != null && resultList.size() > 0) {
    System.out.println("firstList、secondList有交集");
} else {
    System.out.println("firstList、secondList没有交集");
}

结果:

二、获得两个集合的交集

1、使用for循环

比如:

public static void main(String[] args) {
    List<String> firstList = Arrays.asList("teacher", "worker", "student", "driver");
    List<String> secondList = Arrays.asList("user", "admin", "student", "driver");
    List<String> resultList = new ArrayList<>();
    for (String item : firstList) {
        if (secondList.contains(item)) {
            resultList.add(item);
        }
    }
    System.out.println(resultList);
}

结果:

要是两个集合中存在重复元素,这样得到的结果是没有去重的,如果是:

结果是:

如果要去重可以加上

最终的代码:

public static void main(String[] args) {
    List<String> firstList = Arrays.asList("teacher", "worker", "student", "driver", "driver");
    List<String> secondList = Arrays.asList("user", "admin", "student", "driver", "driver");
    List<String> resultList = new ArrayList<>();
    for (String item : firstList) {
        if (secondList.contains(item) && !resultList.contains(item)) {
            resultList.add(item);
        }
    }
    System.out.println(resultList);
}

这样得到的结果就是去重的了

也可以使用HashSet去重

结果:

2、使用Java8的forEach

比如:

public static void main(String[] args) {
    List<String> firstList = Arrays.asList("teacher", "worker", "student", "driver");
    List<String> secondList = Arrays.asList("user", "admin", "student", "driver");
    List<String> resultList = new ArrayList<>();
    if (firstList == null) {
        throw new RuntimeException("firstList为空!");
    }
    firstList.forEach((firstItem) -> {
        if (secondList.contains(firstItem)) {
            resultList.add(firstItem);
        }
    });
    System.out.println(resultList);
}

结果:

假如两个集合有相同的元素

和“二.1”一样,这样也是不能去重的

做法也是和上面那样

结果:

或者用HashSet,也和“二.1”一样。

3、使用Java8的新特性

和“一.4”那样,有两种方式可以得到两集合的交集。

代码如下:

public static void main(String[] args) {
    List<String> firstList = Arrays.asList("teacher", "worker", "student");
    List<String> secondList = Arrays.asList("user", "admin", "student");
    //方式一
    List<String> resultList = firstList.stream().filter((firstItem) -> secondList.contains(firstItem)).collect(Collectors.toList());
    //方式二
    //List<String> resultList = firstList.stream().filter(secondList::contains).collect(Collectors.toList());
    System.out.println(resultList);
}

结果:

和“二.1”、“二.2”那样也是不能去除重复元素的

结果:

加上distinct就可以去重了

结果:

总结 

到此这篇关于Java判断两个集合是否具有交集及如何获得交集的文章就介绍到这了,更多相关Java判断两个集合有交集内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文