Commons Collections - 安全空支票


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

检查非空列表

CollectionUtils 的 isNotEmpty() 方法可用于检查列表是否不为空,而不必担心空列表。因此,在检查列表的大小之前,不需要在任何地方都进行空检查。

宣言

以下是声明

org.apache.commons.collections4.CollectionUtils.isNotEmpty()方法 -

public static boolean isNotEmpty(Collection<?> coll)

参数

  • coll - 要检查的集合,可能为空。

返回值

如果非空且非空,则为 True。

例子

以下示例显示了org.apache.commons.collections4.CollectionUtils.isNotEmpty()方法的用法。我们将检查列表是否为空。

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

public class CollectionUtilsTester {
   public static void main(String[] args) {
      List<String> list = getList();
      System.out.println("Non-Empty List Check: " + checkNotEmpty1(list));
      System.out.println("Non-Empty List Check: " + checkNotEmpty1(list));
   }
   static List<String> getList() {
      return null;
   }
   static boolean checkNotEmpty1(List<String> list) {
      return !(list == null || list.isEmpty());
   }
   static boolean checkNotEmpty2(List<String> list) {
      return CollectionUtils.isNotEmpty(list);
   }
}

输出

输出如下 -

Non-Empty List Check: false
Non-Empty List Check: false

检查空列表

CollectionUtils 的 isEmpty() 方法可用于检查列表是否为空,而不必担心空列表。因此,在检查列表的大小之前,不需要在任何地方都进行空检查。

宣言

以下是声明

org.apache.commons.collections4.CollectionUtils.isEmpty()方法 -

public static boolean isEmpty(Collection<?> coll)

参数

  • coll - 要检查的集合,可能为空。

返回值

如果为空或为 null,则为 True。

例子

以下示例显示了org.apache.commons.collections4.CollectionUtils.isEmpty()方法的用法。我们将检查列表是否为空。

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

public class CollectionUtilsTester {
   public static void main(String[] args) {
      List<String> list = getList();
      System.out.println("Empty List Check: " + checkEmpty1(list));
      System.out.println("Empty List Check: " + checkEmpty1(list));
   }
   static List<String> getList() {
      return null;
   }
   static boolean checkEmpty1(List<String> list) {
      return (list == null || list.isEmpty());
   }
   static boolean checkEmpty2(List<String> list) {
      return CollectionUtils.isEmpty(list);
   }
}

输出

下面给出的是代码的输出 -

Empty List Check: true
Empty List Check: true