Vector is synchronized but ArrayList is not synchronized but we can synchronize an ArrayList by Collections.synchronizedList (aList), so which will perform better and faster
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Synchronized collections are a waste of time. A trivial example why it is bad is to consider two threads running a loop doing something to a collection:
This would break horribly whether the collection was sychronized or not. It is better to synchronize any action that occurs on the collection or use Java 5 concurrency Locks to do the same
|
||||
|
|