溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何在java中判斷數(shù)組是否為空

發(fā)布時間:2020-06-25 15:25:02 來源:億速云 閱讀:410 作者:Leah 欄目:編程語言

如何在java中判斷數(shù)組是否為空?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一維數(shù)組需要根據(jù)數(shù)組長度判斷,如果為0,則為空,反之不是;

二維數(shù)組需要根據(jù)第一行的數(shù)組長度判斷,如果為0,則為空,反之不是。

實(shí)例如下:

public class Main {
    public static void main(String[] args) {
        int[] array1 = new int[]{}; //被當(dāng)成 {0}
        if (array1 == null) {
            System.out.println("array1 == null");
        }
        System.out.println(array1.length);//行數(shù)
        if (array1.length == 0) {
            System.out.println("array1.length == 0");
        }
        System.out.println("-----------------------------");
        int[][] array2 = new int[][]{{}}; //被當(dāng)成 {{0},{},{}}
        if (array2 == null) {
            System.out.println("array2 == null");
        }
        System.out.println(array2.length);//行數(shù)
        if (array2.length == 0) {
            System.out.println("array2.length == 0");
        }
        if (array2[0].length == 0) {//第一行的長度
            System.out.println("array2[0].length == 0");
        }
        System.out.println("-----------------------------");
        Integer[] array3 = new Integer[]{}; //被當(dāng)成 {0}
        if (array3 == null) {
            System.out.println("array3 == null");
        }
        System.out.println(array3.length);//行數(shù)
        if (array3.length == 0) {
            System.out.println("array3.length == 0");
        }
        System.out.println("-----------------------------");
        int[][] array4 = new int[][]{{}}; //被當(dāng)成 {{0},{},{}}
        if (array4 == null) {
            System.out.println("array4 == null");
        }
        System.out.println(array4.length);//行數(shù)
        if (array4.length == 0) {
            System.out.println("array4.length == 0");
        }
        if (array4[0].length == 0) {//第一行的長度
            System.out.println("array4[0].length == 0");
        }
    }
}
/*輸出:
0
array1.length == 0
-----------------------------
1
array2[0].length == 0
-----------------------------
0
array3.length == 0
-----------------------------
1
array4[0].length == 0*/

關(guān)于如何在java中判斷數(shù)組是否為空問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI