Apache Commons Collections - 交集



Apache Commons Collections 库的 CollectionUtils 类提供各种实用方法,用于覆盖广泛用例的常用操作。这有助于避免编写样板代码。此库在 jdk 8 之前非常有用,因为 Java 8 的 Stream API 现在提供了类似的功能。

检查交集

可以使用 CollectionUtils 的 intersection() 方法获取两个集合之间的公共对象(交集)。

声明

以下是 org.apache.commons.collections4.CollectionUtils.intersection() 方法的声明——

public static <O> Collection<O> intersection(Iterable<? extends O> a, Iterable<? extends O> b)

参数

  • a − 第一个(子)集合,不能为 null。

  • b − 第二个(超)集合,不能为 null。

返回值

两个集合的交集。

例子

以下示例展示了 org.apache.commons.collections4.CollectionUtils.intersection() 方法的用法。我们将获得两个列表的交集。

import java.util.Arrays;
import java.util.List;
import org.apache.commons.collections4.CollectionUtils;

public class CollectionUtilsTester {
   public static void main(String[] args) {
      //checking inclusion
      List<String> list1 = Arrays.asList("A","A","A","C","B","B");
      List<String> list2 = Arrays.asList("A","A","B","B");
      System.out.println("List 1: " + list1);
      System.out.println("List 2: " + list2);
      System.out.println("Commons Objects of List 1 and List 2: " + CollectionUtils.intersection(list1, list2));
   }
}

输出

运行代码时,将看到以下输出——

List 1: [A, A, A, C, B, B]
List 2: [A, A, B, B]
Commons Objects of List 1 and List 2: [A, A, B, B]
广告