Difference between ArrayList and Vector in Java
ArrayList and Vector are two of most used class on java collection package and difference between Vector and ArrayListis one of the most frequently asked java interview question on first round or phone interview. Though it’s quite a simple question in my opinion but knowledge of when to use Vector over ArrayList or does matter if you are working on a project. In this article we will some point based difference between Vector and ArrayList in Java and trying to understand the concept behind those differences. Ultimate goal is to familiarize yourself with distinguish property of ArrayList and Vector. Java 5 also adds another implementation of List interface which is similar to Vector and ArrayList but provides better concurrency access than Vector, its called CopyOnWriteArrayList.
By the way, this is the third article on discussing Collection interview question, Difference between LinkedList and ArrayList and List vs Set are other popular interview questions based upon collection framework in Java.
Before seeing differences between Vector and ArrayList , let's see some similarities between these two and why we can use ArrayList in place of Vector on certain scenarios.
1) Vector and ArrayListare index-based and backed up by an array internally.
2) Both ArrayList and Vector maintains the insertion order of element. Means you can assume that you will get the object in the order you have inserted if you iterate over ArrayList or Vector.
3) Both Iterator and ListIterator returned by ArrayList and Vector are fail-fast.
4) ArrayList and Vector also allows null and duplicates.
Vector vs ArrayList in Java
Now let's see some key differences between Vector and ArrayList in Java , this will decide when is the right time to use Vector over ArrayList and vice-versa. Differences are based upon properties like synchronization, thread-safety, speed, performance, navigation, and Iteration over List, etc.1) Synchronization and thread-safety
First and foremost difference between Vector and ArrayList is that Vector is synchronized and ArrayList is not, what it means is that all the method which structurally modifies Vector e.g. add () or remove () are synchronized which makes it thread-safe and allows it to be used safely in a multi-threaded and concurrent environment.
On the other hand, ArrayList methods are not synchronized thus not suitable for use in a multi-threaded environment. This is also a popular interview question on a thread, where people ask why ArrayList can not be shared between multiple threads.
2) Speed and Performance
ArrayList is way faster than Vector. Since Vector is synchronized and thread-safe it pays the price of synchronization which makes it a little slow. On the other hand, ArrayList is not synchronized and fast which makes it an obvious choice in a single-threaded access environment. You can also use ArrayList in a multi-threaded environment if multiple threads are only reading values from ArrayList or you can create read-only ArrayList as well.
3) Capacity
Whenever Vector crossed the threshold specified it increases itself by the value specified in capacityIncrement field while you can increase the size of ArrayList by calling ensureCapacity () method.
4) Enumeration and Iterator
Vector can return an enumeration of items it holds by calling elements () method which is not fail-fast as opposed to Iterator and ListIterator returned by ArrayList. I have discussed this point in detail on my post What is the difference between Iterator and Enumeration, you can also look there.
5) Legacy
Another point worth to remember is Vector is one of those classes which comes with JDK 1.0 and initially not part of Collection framework but in the later version, it's been re-factored to implement List interface so that it could become part of collection framework
After considering these points about both Vector and ArrayList, my conclusion is to use ArrayList wherever possible and avoids the use of Vector until you have no choice. Think for CopyOnWriteArrayList over Vector, if you have multiple readers and few writers because it can provide thread-safety without impacting performance too much.
Further Learning
Java In-Depth: Become a Complete Java Engineer
Java Fundamentals: Collections
Data Structures and Algorithms: Deep Dive Using Java
Other Java tutorials from Javarevisited
Difference between String, StringBuffer and StringBuilder in Java
Difference between Comparator and Comparable with Example
Difference between hashtable and hashmap in java
Top 10 collection interview questions in Java
10 examples of Hashtable in Java
Difference between Runnable and Thread in Java
Join the conversation