Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
If this is C#, please tag your question with "C#" or ".NET". – FrustratedWithFormsDesigner May 21 '10 at 14:55
1  
Why don't you write a test and find out? – skaffman Jun 22 '10 at 18:17

1 Answer

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:

int i = 0;
while (i < list.size())
{
  if (testSomeCondition(list.get())) {
    list.remove(i);
  else
    i++;
}

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

synchronized (list) {
  int i = 0;
  while (i < list.size())
  {
    if (testSomeCondition(list.get())) {
      list.remove(i);
    else
      i++;
  }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.