Java中判断数组为空的方法有以下几种:
if (array.length == 0) {
// 数组为空
}
if (Arrays.equals(array, new Object[0])) {
// 数组为空
}
if (Arrays.stream(array).count() == 0) {
// 数组为空
}
if (Objects.isNull(array)) {
// 数组为空
}
注意:以上方法中,只有第一种方法能够同时判断数组是否为null和长度是否为0,其他方法只能判断数组是否长度为0。