ArrayList and vectors store elements of the array. They allow the users to store multiple objects. Data is stored dynamically in both of them.
ArrayList vs Vector
The difference between ArrayList and Vector lies in the pathway through which they store the data and process it. Both the methods let the users perform a series of functions. Programmers prefer to use ArrayList or vector depending upon their requirements. While one is synchronized, the other is non-synchronized. Their expandable capacity varies. They let the user perform from simplest to more complex operations.
Want to save this article for later? Click the heart in the bottom right corner to save to your own articles box!
ArrayList helps the user to make modifications in the size of the array. ArrayList makes the array shrink or expand based on the user’s requirement.
Vector is found in java. util package. It supports a dynamic array of elements which means the array is resizable. Vectors belong to the legacy class.
Comparison Table
Parameters of Comparison | ArrayList | Vector |
---|---|---|
Synchronization | ArrayList is not Synchronized i.e., it could work on various threads simultaneously. | Vector is synchronized i.e., only one thread could handle the code at a moment. |
Speed | Its operations are fast as they are non-synchronized. | Vector operations run slower as they are synchronized. |
Resizing | If elements exceed their capacity then ArrayList increases 50% of the existing array size. | If elements exceed their capacity then the vector increases 100% of the existing array size. |
Preference | Programmers prefer ArrayList over vectors. | It is less preferred as synchronization in vectors causes inferior performance. |
Traversal(pass-through) | It uses Iterator to traverse the elements. | It can use the Iterator as well as enumeration to traverse the elements. |
What is an ArrayList?
ArrayList is a modifiable array. It is found in java. util package. The creation of an ArrayList is helpful when the user does not know the size of the data to be included.
ArrayList lets the users perform the basic operations of adding elements, removing elements, changing elements, and loop operation.
ArrayList supports multiple operations.
- To add elements: Use add() operation to add elements.
- To access any element: Elements can be accessed using the get() option. Elements are accessed using an indexer which starts from zero.
- To change an element: To make changes in any specific element, use set() operation.
- To remove elements: These three operations Remove(), Removerange( , ) and RemoveAt are used to remove elements in the arraylist.
ArrayList is operated by its size. Though it can be expanded by adding the elements and shrank by removing the elements.
The following two methods are used to check whether an element exists in the Java ArrayList or not.
- contains()
- indexOf()
What is a Vector?
Vector is considered to be a legacy class that is synchronized. If multiple threads are needed to operate, then no two threads can perform simultaneously.
Vectors are considered to be thread-safe. Thread safety ensures the users that all threads function appropriately and satisfy their design criteria without unwanted interaction.
Vector ensures the addition or deletion of elements by expanding or shrinking the size of the vector. There may be some cases where the user does not have prior knowledge regarding the length of an array.
Vector just like ArrayList lets the users perform the basic operations of adding elements, removing elements, changing elements, and loop operation.
- To add elements: Use add() operation to add elements.
- To change elements: Use set() operation to change elements. Elements in vectors are attributed by their index.
- To remove elements: Use the remove() method to remove elements from the vector.
Vector supports other simplex operations apart from the basic stated operations.
Main Differences Between ArrayList And Vector
- ArrayList operations are not thread-safe whereas vector operations are thread-safe.
- ArrayList is a collection class whereas vector is a legacy class.
- https://dl.acm.org/doi/abs/10.1145/1044550.1041666
- https://dl.acm.org/doi/abs/10.1145/3394451.3397204
Sandeep Bhandari holds a Bachelor of Engineering in Computers from Thapar University (2006). He has 20 years of experience in the technology field. He has a keen interest in various technical fields, including database systems, computer networks, and programming. You can read more about him on his bio page.