When I create an array in Java - int array[] and array=new int[some number] -
How can I construct it if I don't know how many values it will hold so that I have enough space in it?
|
When I create an array in Java - int array[] and array=new int[some number] - How can I construct it if I don't know how many values it will hold so that I have enough space in it? |
|||||||||
|
|
For growing arrays, use If the array should contain primitive types, you can wrap them:
However, when the values change a lot, you keep instantiating and throwing away Integer instances, because it is immutable. It's not very high performance either. My solution: create a wrapper yourself, with a public value field. This is my wrapper, which is also suitable for
Now you can do stuff like:
|
|||
|
|
|
In that case you might wanna use Declaration
if using JDK 1.5 or greater then you can also mention type of elements that this list will hold.
http://www.roseindia.net/java/beginners/array_list_demo.shtml |
||||
|
|
|
ArrayList is the simplest answer, however if you want a more memory efficient approach you can use TIntArrayList (which wraps a |
|||||
|