Example 1: how to get the dimensions of a 2d array in java
public class Main {
public static void main(String[] args) {
int[][] test = new int[10][4];
int rows = test.length;
int coloumns = test[0].length;
System.out.println(rows);
System.out.println(coloumns);
}
}
Example 2: java 2d array length
int[][] test;
test = new int[5][10];
int row = test.length;
int col = test[0].length;
Example 3: 2d array length in java
public static void main(String[] args) {
int[][] foo = new int[][] {
new int[] { 1, 2, 3 },
new int[] { 1, 2, 3, 4},
};
System.out.println(foo.length); //2 // gives count of rows
System.out.println(foo[0].length); //3 // gives count of columns for particular row
System.out.println(foo[1].length); //4
}
Example 4: java length of matrix
public static void main(String[] args) {
int[][] foo = new int[][] {
new int[] { 1, 2, 3 },
new int[] { 1, 2, 3, 4},
};
System.out.println(foo.length); //2
System.out.println(foo[0].length); //3
System.out.println(foo[1].length); //4
}
Example 5: How to create a 2d array in java
int[][] arr = new int[m][n];
Example 6: declaring 3d arrays
int test[2][3][4] = {
{{3, 4, 2, 3}, {0, -3, 9, 11}, {23, 12, 23, 2}},
{{13, 4, 56, 3}, {5, 9, 3, 5}, {3, 1, 4, 9}}}