CollectionUtils.isNotEmpty()不存在问题
org.apache.commons.collections.CollectionUtils的包必须是3.1以上
依赖,如下
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.2</version>
</dependency>
collectionUtils.isNotEmpty()用法
源码奉上
public static boolean isEmpty(Collection coll) {
return coll == null || coll.isEmpty();
}
其实不难理解 就是为了对集合判空
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。