In the blackberry documentation, they say that an array takes one object handle:
int[] array; // 1 object handle
How many handles does an array of arrays take?
int[][] array = new int[4][2]; // how many handles?
I can't figure out if it would be a single one since, after all, the array can be construed as a single piece of memory or is it multiples (5 in this case) because there would be one per element in the first-level array?