Google News
logo
Java Collections - Interview Questions
What are the methods to make collection thread-safe?
The methods to make collection thread safe are :
 
* Collections.synchronizedList(list);
* Collections.synchronizedMap(map);
* Collections.synchronizedSet(set);
Advertisement