I’m using ArrayList<Integer> in my research project. I need to keep unknown number of integers in this list. Sometimes I need to update the list: remove existing records or add new records. As Integer is an object, it’s taking much more memory than only int. Is there any alternate way to maintain the list that will consume less memory than Integer?
|
|
||||
|
Try an integer list implementation that is optimized for memory usage, such as the one from the Colt library: http://acs.lbl.gov/software/colt/api/cern/colt/list/IntArrayList.html Java Integer objects usually require more overhead than an int primitive, so you need an implementation that is space-optimized. From Colt:
|
||||
|
|
|
You could use an array with int-s and write your own methods with the same logic, that ArrayList does. But IMO that is a bad idea - modern machines have enough memory to use Integer objects, trust me... :) |
|||
|
|
|
That depends on the language you use, but I assume it's Java. In Java, as you probably know, you can't use ints in ArrayList, because they are a primitive datatype. To use ints, you'd have to use regular arrays, which are fixed size. That means you need to create a new array of a larger size each time you add something, assuming that makes the number of elements larger than the array. You trade memory for complexity, as you have to write a lot more code and mess around with moving ints back and forth. The reduced memory use is unlikely to be worth the work and the extra risk of bugs in implementing such a solution. |
|||||||
|
|
You should also think about an alternativ storage system to you |
|||
|
|

Integercould take as little as 16 bytes, vs 4 bytes in an int. Is that really such a big deal? – NullUserException♦ Oct 6 '12 at 20:41