Like the others. Java does not have true multidimensional arrays, but instead has arrays of arrays. To get the length of a specific array, you just need to get a member variable of length for that array:
int[][] ints = { { 1 }, {1,2,3}, {5,6} }; ints[0].length == 1 ints[1].length == 3
source share