Computer Science, asked by Vishal5738, 1 year ago

Difference between synchronized and concurrent collection

Answers

Answered by SnehaG
0

Concurrent collections are exactly opposite. ... e.g MAP returned by Collections.synchronizedMap(Map) will be a synchronized map and can be modified by one thread at a time, but Concurrent Collections allows multiple threads to access different parts of a collection at a given time, based on the requirement.

Similar questions