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?

link|improve this question

77% accept rate
1  
I don't know, how was it calculated? Mind sharing the code? – Mehrdad Mar 12 '11 at 7:37
Just used the in-built .lenght function.... the answer was 120... was trying to figure out,"Why was it printed 120 and not 20." – Jeetesh Nataraj Mar 12 '11 at 7:46
1  
It wouldn't be, if you really had constructed it with [20][20]. I suspect this is a diagnostic problem. See my answer for an example of it printing 20. If you can provide a similar short but complete program printing 120 unexpectedly, please do so. – Jon Skeet Mar 12 '11 at 7:50
@ Jon:Thank You – Jeetesh Nataraj Mar 12 '11 at 7:52
feedback

1 Answer

up vote 1 down vote accepted

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.

public class Test
{
    public static void main(String[] args)
    {
        int[][] array = new int[20][20];
        System.out.println(array.length); // Prints 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:

public int findTotalLength(int[][] array)
{
    int sum = 0;
    for (int[] subArray : array)
    {
        sum += subArray.length;
    }
    return sum;
}

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.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.