Let me ask you something. Let's say we have a hashmap in java which keys are string objects and their corresponding values are integers. Now if i want to update (increment) the integer-value of the string-key for each existence of the string i find, how can i do it? The reasonable explanation of this would be to remove and then reenter the pair but that should have too much of an overhead, the other one would be to just put the new pair and the old one would be replaced. In the latter case, what happens if i just want to put a key in my map which hashcode has a collision ? The correct behavior for a hashtable would be to assign a different place for it, or make a list out of it in the current bucket. I'm a bit confused :S ..
should be fine. It will update the value for the existing mapping. Note that this uses auto-boxing. |
|||||||||||
|
|
Replace An alternative is to wrap an |
|||||||||||||||||
|
|
hashmap.put(key, hashmap.get(key) + 1); The method put will replace the value of an existing key and will create it if doesn't exist. The method set doesn't exist. |
|||
|
|
|
@Matthew's solution is the simplest and will perform well enough in most cases. If you need high performance, AtomicInteger is a better solution ala @BalusC. However, a faster solution (provided thread safety is not an issue) is to use TObjectIntHashMap which provides a increment(key) method and uses primitives and less objects than creating AtomicIntegers. e.g.
|
|||
|
|
|
Use a
|
|||||
|
|
Try:
NOTE:
You can change either the key or the value in your hashmap, but you can't change both at the same time. |
||||
|
|