Originally posted by Arnb Sen:
How can you say that "did not create the int array for each element" ? Did not understand.
That is how it works... when you say...
Java will create you an array of int arrays but will not create each element. To do that, you must...
And also notice that each array element does not have to be an int array of the same size.
Henry