Hi guys,
I did a code that have two arrays, one I call array1 and the other array2, two of them two-dimensional. What's the difference between the 2 implementations bellow? Is there any difference? Because I've never seen this kind of implementation where you inicialize the array without passing the number of colums: byte[][] array12 = new byte[3][];
I saw this only in the book about certification
Java.
Being more especific...
Is this
the same of it?
Internaly that declaration byte[][] array1 = new byte[3][2]; creates an array of arrays?
Thank you very much