I am using a TreeMap<Integer,Object>() to store values.
Now my Object has a component, Object.value(), which keeps getting incremented as per values read from a file.
So, I evaluate whether the key exists and need to update value.
I do not understand how I can update values in a Map in Java.
I cannot just replace the whole record, as new values need to be added to the existing record value.
Is there a better way to do this than using a map? I used a map because I will keep searching for the keys.
Any suggestions?
|
|
||||
|
Well using a map is correct if you want to be able to quickly access your key-value pairs. If you're values are just
I'm using MyObject here as the poster was using |
|||||||
|
|
Your "object" needs to have an setter which updates the value. So you just retrieve the object in question from the map, call the setter on this object, et voila. The only obstacle you must take care of is that whatever you do in your
You can pull it out of the |
|||
|
|
|
I'm not sure of what you are trying to do but if you just want to store objects with keys you should use a Hashtable. It allows to map keys to objects.
Hope this helps. |
|||||||
|
treemaporIntger, you'll get errors and be unable to build. – Lord Torgamus Nov 3 '10 at 15:47