Which Java Collections are synchronized, which are not?
Example: HashSet is not synchronized
import java.util.Collections; //Import this
List syncList = Collections.synchronizedList(new ArrayList());
This is how you can synchronise a list in java.