Search

Useful Links

Wednesday, May 18, 2011

Difference between Vector and ArrayList

 The basic difference between a Vector and an ArrayList is that, vector is synchronized while ArrayList is not. Thus whenever there is a possibility of multiple threads accessing the same instance, one should use Vector. While if not multiple threads are going to access the same instance then use ArrayList. Non synchronized data structure will give better performance than the synchronized on

No comments:

Post a Comment