public class ArrayUtils
extends Object
ArrayUtils
- 作者:
- SanLi
Created by qinggang.zuo@gmail.com / 2689170096@qq.com on 2020/3/30 22:22
-
-
方法概要
static boolean
static boolean
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
构造器详细资料
-
ArrayUtils
private ArrayUtils()
-
方法详细资料
-
isEmpty
public static boolean isEmpty(Object[] array)
判断数据是否为空
- 参数:
array - Object 长度
- 返回:
Boolean 数组为null或者长度为0时,返回 false
-
isNotEmpty
public static boolean isNotEmpty(Object[] array)
判断数组是否不为空
- 参数:
array - Object 数组
- 返回:
Boolean 数组对象内含有任意对象时返回 true
- 另请参阅:
-