I am using HashMultiMap in my code. Now, my code is getting periodically some bits. Which I store in a string (ex. String str = "0110011100"). And then convert it to an int and store it as my HashMultiMap key/value. Is it possible to store it as bits instead of storing it as int/string ? Is that way saves the space of the map ? Actually, the string has more bits than byte and less than int (say for ex. 14 bits). So, I want to save space by storing it as bits. Thanks.
|
Java has a convenient If the number of bits is limited to 32, using A better way to approach this problem is to start with the most convenient representation for you, that fits your application design logically. When the application is working, profile its memory usage to determine if you need to optimize the representation of your bit sets; more likely than not, you wouldn't need to do anything about it, at least not right away. |
|||
|
|
int, but is it also less than, say, 16? – dasblinkenlight Mar 24 '12 at 17:27HashMultimapis the least of your concerns -- using aStringin the first place is a failure mode all by itself, if you can avoid it. – Louis Wasserman Mar 24 '12 at 19:55