I am slightly confused with concept... When printed a length of a 2D array of[20][20]. Answer was 120... But unable to figure out... How was it Calculated?
feedback
|
|
The length of a 2D array of [20][20] is actually just 20... because a 2D array is just an array of arrays. The "outer" array is an array of length 20, each element of which is an array of length 20.
If you want to find the total number of elements of a multi-dimensional array, you'll need to sum the lengths of each subarray. For example:
Note that you can't just take the first sub-array's length and multiply the "outer" length by that, as other sub-arrays can have different lengths. (There could also be null references, which the above code doesn't try to detect.) | |||
|
feedback
|