What is the difference between using the wrapped class, SynchronizedMap, on a HashMap and ConcurrentHashMap? Is it just being able to modify the hashmap while iterating it (ConcurrentHashMap)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The short answer: Both maps are thread-safe implementations of the Map interface. ConcurrentHashMap is implemented for higher throughput in cases where high concurrency is expected. Brian Goetz's article on the idea behind ConcurrentHashMap is a very good read. Highly recommended. |
|||
|
|
|
|
|||
|
|
|
Also iterators returned for |
|||
|
|
