在Java中,我們可以使用以下方法來判斷數組是否為空:
int[] arr = new int[0];
if(arr.length == 0){
System.out.println("數組為空");
} else {
System.out.println("數組不為空");
}
int[] arr = new int[0];
if(Arrays.equals(arr, new int[0])){
System.out.println("數組為空");
} else {
System.out.println("數組不為空");
}
int[] arr = new int[0];
if(Arrays.toString(arr).equals("[]")){
System.out.println("數組為空");
} else {
System.out.println("數組不為空");
}
以上是幾種常用的方法來判斷數組是否為空,根據實際情況選擇適合的方法進行判斷。