JAVA中Commons Collections - Ignore NULL如何理解?
"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"
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。