Home Java javaTutorial The difference between Vector and ArrayList in Java

The difference between Vector and ArrayList in Java

Nov 16, 2016 pm 01:13 PM
java

First of all, see that both categories implement the List interface, and the List interface has three implementation classes, namely ArrayList, Vector and LinkedList. List is used to store multiple elements, can maintain the order of elements, and allows duplication of elements. The relevant differences between the three specific implementation classes are as follows:

ArrayList is the most commonly used List implementation class. It is implemented internally through an array, which allows fast random access to elements. The disadvantage of the array is that there cannot be a gap between each element. When the array size is not satisfied, the storage capacity needs to be increased, and the data of the existing array must be copied to the new storage space. When inserting or deleting elements from the middle of ArrayList, the array needs to be copied and moved, which is relatively expensive. Therefore, it is suitable for random search and traversal, but not for insertion and deletion.

Vector, like ArrayList, is also implemented through arrays. The difference is that it supports thread synchronization, that is, only one thread can write to Vector at a time, avoiding inconsistency caused by multiple threads writing at the same time. However, achieving synchronization requires a lot of effort. cost, therefore, accessing it is slower than accessing the ArrayList.

LinkedList uses a linked list structure to store data, which is very suitable for dynamic insertion and deletion of data. Random access and traversal are relatively slow. In addition, it also provides methods not defined in the List interface, which are specifically used to operate the head and tail elements of the list, and can be used as a stack, queue, and bidirectional queue.

​ Looking at the Java source code, we found that when the size of the array is not enough, we need to re-create the array and then copy the elements to the new array. The sizes of the extended arrays of ArrayList and Vector are different.

In ArrayList:

public boolean add(E e) {
 
    ensureCapacity(size + 1);  // 增加元素,判断是否能够容纳。不能的话就要新建数组
  
    elementData[size++] = e;
 
    return true;
 
}
 
 public void ensureCapacity(int minCapacity) {
 
    modCount++; 
 
    int oldCapacity = elementData.length;
 
    if (minCapacity > oldCapacity) {
 
        Object oldData[] = elementData; // 此行没看出来用处,不知道开发者出于什么考虑
  
        int newCapacity = (oldCapacity * 3)/2 + 1; // 增加新的数组的大小
  
        if (newCapacity < minCapacity)
 
       newCapacity = minCapacity;
 
            // minCapacity is usually close to size, so this is a win:
  
            elementData = Arrays.copyOf(elementData, newCapacity);
 
    }
 
}
Copy after login

In Vector:

private void ensureCapacityHelper(int minCapacity) {
 
    int oldCapacity = elementData.length;
 
    if (minCapacity > oldCapacity) {
 
        Object[] oldData = elementData;
 
        int newCapacity = (capacityIncrement > 0) ?
 
       (oldCapacity + capacityIncrement) : (oldCapacity * 2);
 
        if (newCapacity < minCapacity) {
 
       newCapacity = minCapacity;
 
        }
 
         elementData = Arrays.copyOf(elementData, newCapacity);
 
    }
 
}
Copy after login

The difference between ArrayList and Vector is as follows:

ArrayList expands by 50% + 1 by default when memory is insufficient, and Vector expands by 1 times by default.

Vector provides the indexOf(obj, start) interface, but ArrayList does not.

Vector is thread-safe, but Vector is not used in most cases because thread safety requires greater system overhead.


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Square Root in Java Square Root in Java Aug 30, 2024 pm 04:26 PM

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Random Number Generator in Java Random Number Generator in Java Aug 30, 2024 pm 04:27 PM

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Armstrong Number in Java Armstrong Number in Java Aug 30, 2024 pm 04:26 PM

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

See all articles