Java
Multidimensional and Jagged Arrays in Java
Java has no true two dimensional array. It has arrays of arrays, which is what makes jagged shapes possible.
Array handling in Java.
2 notes tagged
Java has no true two dimensional array. It has arrays of arrays, which is what makes jagged shapes possible.
An array is a fixed size object holding elements of one type, indexed from zero, with the length fixed at creation.