Removing all items of a given value from a hashmap

后端 未结 6 725
北荒
北荒 2020-12-15 19:27

So I have a java hashmap like below:

hMap.put(\"1\", \"One\");
hMap.put(\"2\", \"Two\");
hMap.put(\"3\", \"Two\");

I would like to remove A

6条回答
  •  感动是毒
    2020-12-15 19:56

    You can use while( hmap.values().remove("Two") ); since the remove call returns true if the collection was changed as a result of the call.

提交回复
热议问题