Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this 2d array:

private boolean[][] landscape;

this landscape array defines a pond with its [rows] and [cols]

The method, public int getRows(), needs to return the number of rows in the landscape array

I tried just return landscape.length; and that didnt work. Couple more things I tried without success:

        int count = 0;
        for (boolean[] i : landscape){
            count += i.length;


        }
        return count;

And

       int count = 0;

        for (int i = 0; i < landscape.length; i++) {

                if (landscape[i] != null){
                    count ++;

            }

        }
        return count;

The amount of rows and cols depends on what the user selects I believe. There is a minimum of 5. So how would i do this?

share|improve this question

3 Answers

How about return landscape[0].length? You'd want to be sure the array element at landscape[0] was initialised already, but it sounds like that'd be fine.

See, since (I assume) you're initialising as landscape[rows][cols], asking for landscape.length gets you the number of cols - it works from the outside in. You need to go deeper.

share|improve this answer
i believe i already tried that – user738647 May 9 '11 at 4:50
That would be a column's length. – Adeel Ansari May 9 '11 at 4:51
Oh well, in that case you need to describe your problem more, preferably with exact definitions of 'didn't work'. – thasc May 9 '11 at 4:56

Lets start with some definitions:

Let us assume that a 3 x 4 rectangular array has 3 columns and 4 rows and is represented by:

boolean landscape[][] = new boolean[3][4];

To get the number of rows and columns:

int nosRows = landscape[0].length;  // 4
int nosCols = landscape.length;     // 3

If you think I've got rows and columns mixed up, (mentally) rename them. (There is no universal convention about which dimension represents the columns and which represents the rows.)

If you are expecting some answer other than 3 or 4, you will need to explain what you are talking about.

share|improve this answer

return landscape.length should work, as 2D arrays are nothing but array of an array.

What do you mean by "didn't work"? Please try to elaborate on what you want. Do you really mean "number of rows", or you actually means "number of elements"?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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