How should I go about asking a 2-dimensional array how many rows it has?
|
Firstly, Java technically doesn't have 2-dimensional arrays: it has arrays of arrays. So in Java you can do this:
The point I want to get across is the above is not rectangular (as a true 2D array would be). So, your array of arrays, is it by columns then rows or rows then columns? If it is rows then columns then it's easy:
(from the above example). If your array is columns then rows then you've got a problem. You can do this:
but this could fail for a number of reasons:
Arrays are a crude tool. If you want a true 2D object I strongly suggest you find or write a class that behaves in the correct way. |
|||
|
|
|
|||
|
|
|
|||
|
|
|
It depends what you mean by "how many rows". For a start, a 2-dimensional array is actually a 1-D array of 1-D arrays in Java. And there is no requirement that a 2-D array is actually rectangular, or even that all elements in the first dimension are populated.
|
|||
|
|