Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ..

share|improve this question

6 Answers

up vote 39 down vote accepted
map.put(key, map.get(key) + 1);

should be fine. It will update the value for the existing mapping. Note that this uses auto-boxing.

share|improve this answer
In fact that is the most robust and scalable enterprise solution. – Lavir the Whiolet Nov 11 '10 at 18:42
2  
@Lavir, its not a bad solution, but dont see hows its the most robust and scalable. An atomicinteger instead is much more scalable. – John Vint Nov 11 '10 at 19:33
There is no set method – Jam Feb 5 '12 at 21:43
@JAM, thanks, fixed. – Matthew Flaschen Feb 6 '12 at 1:55

Replace Integer by AtomicInteger and call one of the increment methods on it.

An alternative is to wrap an int in your own MutableInteger class which has an increment() method, you only have a threadsafety concern to solve yet.

share|improve this answer
1  
Good solution but "MutableInteger" would be better. – Lavir the Whiolet Nov 11 '10 at 18:39
@Lavir: I added that as an alternative before I saw your comment :) – BalusC Nov 11 '10 at 18:40
7  
AtomicInteger is a Mutable Integer but builtin. I seriously doubt writing your own MutableInteger is a better idea. – Peter Lawrey Nov 11 '10 at 18:51
1  
@Peter: exactly. – BalusC Nov 11 '10 at 18:54
I wish I can upvote peter's comment a few more times. – John Vint Nov 11 '10 at 19:36

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.

share|improve this answer

@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.

TObjectIntHashMap<String> map = new TObjectIntHashMap<String>()
map.increment("aaa");
share|improve this answer

Use a for loop to increment the index:

for (int i =0; i<5; i++){
    HashMap<String, Integer> map = new HashMap<String, Integer>();
    map.put("beer", 100);

    int beer = map.get("beer")+i;
    System.out.println("beer " + beer);
    System.out ....

}
share|improve this answer
1  
That would just overwrite the Map on each iteration. See Matthew's answer for the correct approach. – Leigh Jun 14 '12 at 21:06

Try:

HashMap hm=new HashMap<String ,Double >();

NOTE:

String->give the new value; //THIS IS THE KEY
else
Double->pass new value; //THIS IS THE VALUE

You can change either the key or the value in your hashmap, but you can't change both at the same time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.