I want to add duplicate elements on hashmap
so:
put("name1", 1);
put("name1", 3);
put("name1", 3);
put("name2", 1);
put("name2", 3);
how i can do that?
|
|
Use a So, in this case, Obviously you'd have to write your own put method, in which you add the int to the list. Example:
|
|||
|
|
|
The ListMultimap interface from Guava may meet your requirements. It allows duplicate keys and duplicate key/value pairs.
Also do you really need to preserve duplicate key/value pairs? If not then a
|
||||
|
|
|
Your idea violates the contract of the Map interface:
It'd understandably be confusing to the map when you ask:
It wouldn't know which value to get. I'd use dogbane's solution of mapping each key to a list of Integers. In your example, you have possible duplicate values. If you don't want duplicate values (i.e. for "name1" there'd be only one 3 in the resulting list), you could instead make it a Map of Strings to Sets of Integers. |
|||
|
|
|
You should use Google Collection's Multimap data structure.
This is exactly what you are trying to achieve. No need to re-invent the wheel by writing your custom Map operations in my opinion. Also you may find this tutorial on MultiMap useful. |
|||||||||||
|
|
You can't , you can however create your own implementation of map which allows duplicates inside. |
|||