Apache Commons Collections - 并集



Apache Commons Collections 库的 CollectionUtils 类提供了针对涵盖各种用例的常见操作的各种实用方法。它有助于避免编写样板代码。该库在 jdk 8 之前非常有用,因为类似的功能现在已经在 Java 8 的 Stream API 中提供。

检查并集

CollectionUtils 的 union() 方法可用于获取两个集合的并集。

声明

以下是 org.apache.commons.collections4.CollectionUtils.union() 的声明 −

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

参数

  • a − 第一个集合,不得为 null。

  • b − 第二个集合,不得为 null。

返回值

两个集合的并集。

范例

以下示例演示例如何使用 org.apache.commons.collections4.CollectionUtils.union() 方法,我们将获取两个列表的并集。

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("Union of List 1 and List 2: "+ CollectionUtils.union(list1, list2));
   }
}

输出

这会产生以下输出 −

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