Thomas Hauck wrote:Question:
Do synchronized collections provide higher performance than when working with two threads (without using java.util.concurrent)?
Is there an advantage of using the Concurrent Collections as opposed to using threads ?
The answer is Abstraction. While working with the business logic, you are most likely to focus on business rules rather than delving deep into synchronization details .
I feel all the high level constructs are developed using the low level constructs only and nothing new is being exploited at the OS level to make these classes better in performance.
But yes, as Paul said, these classes are well tested and there is no reason to not to use them.
Thanks !!!