Google News
logo
Java - Interview Questions
Can you synchronize the ArrayList object?
Yes, we can use synchronizedList() method to synchronize the ArrayList as:
Collections.synchronizedList(new ArrayList());
Advertisement