Commons Collections 简明教程

Apache Commons Collections - Merge & Sort

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

Merging two sorted lists

可使用 CollectionUtils 的 collate() 方法合并两个已排序的列表。

Declaration

以下是声明:

org.apache.commons.collections4.CollectionUtils.collate() 方法 −

public static <O extends Comparable<? super O>> List<O>
   collate(Iterable<? extends O> a, Iterable<? extends O> b)

Parameters

  1. a - 第一个集合,不得为 null。

  2. b - 第二个集合,不得为 null。

Return Value

一个新的已排序列表,包含集合 a 和 b 的元素。

Exception

  1. NullPointerException − 如果任意一个集合为 null。

Example

以下示例显示 org.apache.commons.collections4.CollectionUtils.collate() 方法的用法。我们将合并两个已排序列表,然后打印已合并且已排序的列表。

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

public class CollectionUtilsTester { 8. Apache Commons Collections — Merge & Sort
   public static void main(String[] args) {
      List<String> sortedList1 = Arrays.asList("A","C","E");
      List<String> sortedList2 = Arrays.asList("B","D","F");
      List<String> mergedList = CollectionUtils.collate(sortedList1, sortedList2);
      System.out.println(mergedList);
   }
}

Output

输出如下 −

[A, B, C, D, E, F]