i want to create two dimensional array dynamically.I know the number of columns.But the number of rows are changed dynamically.I try the array list,but it stores the value in single dimension only.what can i do?
|
|
Since the number of columns is a constant, you can just have an
Since it's backed by a |
|||
|
|
|
There are no multi-dimensional arrays in Java, there are, however, arrays of array. Just make an array of however large you want, then for each element make another array however large you want that one to be.
Alternatively:
|
|||
|
|
|
How about making a custom class containing an array, and use the array of your custom class. |
|||
|
|
|
A more generic way could also be using the Object class so that you aren't type bound, but be careful when using:
|
|||
|
|
|
Try to make In java, Treemap is sorted map. And the number of item in row and col wont screw the 2D-index you want to set. Then you can get a col-row table like structure. |
|||
|
|
