Sunday, December 21, 2014

Collections.synchronizedMap(Map m) over Hashtable

I have query about usage of Collections.synchronizedMap(Map m) over Hashtable. We know that both will return a container where all methods are synchronized, so I don't see performance gain in any case.


Then why we have utility method(Collections.synchronizedMap) when Hashtable suffice the requirement.


Clarification with code will be helpful.


No comments:

Post a Comment