获取二维数组的长度

2022-08-31 15:46:06

如果我不知道数组的第二维,如何获取它? 只给出第一个维度。array.length

例如,在

public class B {
    public static void main(String [] main){
        int [] [] nir = new int [2] [3];
        System.out.println(nir.length);
    }
}

查看代码在 Ideone.com 实时运行

2

如何获取 的第二维值,即 3?nir


答案 1

3个?

您已经创建了一个多维数组。 是整数数组的数组;你有两个长度为三的数组。nir

System.out.println(nir[0].length); 

会给你第一个数组的长度。

同样值得注意的是,您不必像以前那样初始化多维数组,这意味着所有数组不必具有相同的长度(或根本不存在)。

int nir[][] = new int[5][];
nir[0] = new int[5];
nir[1] = new int[3];
System.out.println(nir[0].length); // 5
System.out.println(nir[1].length); // 3
System.out.println(nir[2].length); // Null pointer exception

答案 2

在最新版本的JAVA中,这是你如何做到的:

nir.length //is the first dimension
nir[0].length //is the second dimension