时间:2022-09-14 09:15:49 | 栏目:JAVA代码 | 点击:次
org.apache.commons.collections.CollectionUtils的包必须是3.1以上
<dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.2</version> </dependency>
public static boolean isEmpty(Collection coll) { return coll == null || coll.isEmpty(); }
其实不难理解 就是为了对集合判空