Apache通用集合相交

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]

上一篇:Apache通用集合包函关系

下一篇:Apache通用集合差集

关注微信小程序
程序员编程王-随时随地学编程

扫描二维码
程序员编程王

扫一扫关注最新编程教程