- 共享收藏教程
- 共享收藏 - 主页
- Commons Collections - 概述
- Commons Collections - 环境设置
- Commons Collections - 包接口
- Commons Collections - BidiMap 接口
- Commons Collections - MapIterator 接口
- Commons Collections - OrderedMap 接口
- Commons Collections - 忽略 Null
- Commons Collections - 合并和排序
- Commons Collections - 转换对象
- Commons Collections - 过滤对象
- Commons Collections - 安全空支票
- 共享收藏 - 包容性
- 共享收藏 - 交叉口
- Commons Collections - 减法
- 下议院收藏 - 联盟
- 共享馆藏资源
- 共享收藏 - 快速指南
- Commons Collections - 有用的资源
- 共享收藏 - 讨论
Apache Commons Collections - 忽略 Null
Apache Commons Collections 库的 CollectionUtils 类为涵盖广泛用例的常见操作提供了各种实用方法。它有助于避免编写样板代码。该库在 jdk 8 之前非常有用,因为 Java 8 的 Stream API 现在提供了类似的功能。
检查非空元素
CollectionUtils 的 addIgnoreNull() 方法可用于确保仅将非空值添加到集合中。
宣言
以下是声明
org.apache.commons.collections4.CollectionUtils.addIgnoreNull()方法 -
public static <T> boolean addIgnoreNull(Collection<T> collection, T object)
参数
collection - 要添加到的集合不能为空。
object - 要添加的对象,如果为 null,则不会添加。
返回值
如果集合发生更改,则为 true。
例外
NullPointerException - 如果集合为空。
例子
以下示例显示了org.apache.commons.collections4.CollectionUtils.addIgnoreNull()方法的用法。我们正在尝试添加一个空值和一个示例非空值。
import java.util.LinkedList; import java.util.List; import org.apache.commons.collections4.CollectionUtils; public class CollectionUtilsTester { public static void main(String[] args) { List<String> list = new LinkedList<String>(); CollectionUtils.addIgnoreNull(list, null); CollectionUtils.addIgnoreNull(list, "a"); System.out.println(list); if(list.contains(null)) { System.out.println("Null value is present"); } else { System.out.println("Null value is not present"); } } }
输出
输出如下 -
[a] Null value is not present