开发者社区> 问答> 正文

JAVA中Commons Collections - Ignore NULL如何理解?

JAVA中Commons Collections - Ignore NULL如何理解?

展开
收起
vncamyi27xznk 2021-11-13 23:53:13 331 0
1 条回答
写回答
取消 提交回答
  • "Apache Commons Collections 库的 CollectionUtils 类为常见操作提供了各种实用方法,涵盖了广泛的用例。 它有助于避免编写样板代码。 这个库在 jdk 8 之前非常有用,因为 Java 8 的 Stream API 现在提供了类似的功能。 console.log(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""); } } })

    它将打印以下结果: console.log([a] Null value is not present )

    资料来源:《Java工程师成神之路(基础篇)》,链接:https://developer.aliyun.com/topic/download?id=923"

    2021-11-16 15:41:51
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
Spring Cloud Alibaba - 重新定义 Java Cloud-Native 立即下载
The Reactive Cloud Native Arch 立即下载
JAVA开发手册1.5.0 立即下载