Difference Between ArrayList and Vector

ArrayList and vectors store elements of the array. They allow the users to store multiple objects. Data is stored dynamically in both of them.

/10

IT Quiz

Test your knowledge about topics related to technology

1 / 10

Which American Computer Company is also known by the nick name "Big Blue"

2 / 10

'.BAK' extension usually refers to what kind of file?

3 / 10

The main function of smart assistants like Apple Siri and Amazon Alexa is

4 / 10

Which of the following AI domain attempts to extract information from spoken and written words using algorithms?

5 / 10

Machine becomes intelligent once they are

6 / 10

The app or software, or website asks about access of your location, camera, storage, contacts etc., are known as

7 / 10

How many numbers of home pages a web site can contain

8 / 10

With reference to a computer network, the exact meaning of the term VPN is

9 / 10

Mac Operating System is developed by which company

10 / 10

The output printed by a computer through a printer on the paper is called

Your score is

0%

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.

ArrayList vs Vector

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 ComparisonArrayListVector
SynchronizationArrayList 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.
SpeedIts operations are fast as they are non-synchronized.Vector operations run slower as they are synchronized.
ResizingIf 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.
PreferenceProgrammers 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. 

  1. To add elements: Use add() operation to add elements.
  2. To access any element: Elements can be accessed using the get() option. Elements are accessed using an indexer which starts from zero. 
  3. To change an element: To make changes in any specific element, use set() operation.
  4. 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.

  1. contains()
  2. 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.

  1. To add elements: Use add() operation to add elements.
  2. To change elements: Use set() operation to change elements. Elements in vectors are attributed by their index.
  1. 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

  1. ArrayList operations are not thread-safe whereas vector operations are thread-safe.
  2. ArrayList is a collection class whereas vector is a legacy class.
References
  1. https://dl.acm.org/doi/abs/10.1145/1044550.1041666
  2. https://dl.acm.org/doi/abs/10.1145/3394451.3397204

One request?

I’ve put so much effort writing this blog post to provide value to you. It’ll be very helpful for me, if you consider sharing it on social media or with your friends/family. SHARING IS ♥️

Leave a Comment

Your email address will not be published. Required fields are marked *