要獲取二維數組的行數和列數,可以使用數組的.length屬性。對于二維數組,.length表示的是該二維數組中一維數組的個數,即行數。而對于每個一維數組,可以使用[0].length來獲取其列數。
下面是一個示例代碼:
public class Main {
public static void main(String[] args) {
int[][] arr = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
// 獲取行數
int rows = arr.length;
System.out.println("行數:" + rows);
// 獲取列數
int cols = arr[0].length;
System.out.println("列數:" + cols);
}
}
輸出結果:
行數:3
列數:3
在上面的示例中,二維數組arr
的行數為3,列數也是3。