Is it possible to change HashMap as Synchronized. If so, Please let me know how to change it.
|
For synchronizing a HashMap,you can use
which will return a synchronized map for you, which is thread-safe. |
|||
|
|
|
As per javadoc
|
|||
|
|
Returns a synchronized (thread-safe) map backed by the specified map. In order to guarantee serial access, it is critical that all access to the backing map is accomplished through the returned map. |
||||
|
|
ConcurrentHashMaporCollections.synchronizedMap()instead. – Tomasz Nurkiewicz Dec 2 '12 at 12:41