深入Java集合:ArrayList实现原理

2024-08-26 20:18

本文主要是介绍深入Java集合:ArrayList实现原理,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

概述

ArrayList 是 List 接口的可变数组的实现。实现了所有可选列表操作,并允许包括 null 在内的所有元素。除了实现 List接口外,此类还提供一些方法来操作内部用来存储列表的数组的大小。

每个 ArrayList实例都有一个容量,该容量是指用来存储列表元素的数组的大小。它总 是至少等于列表的大小。随着向 ArrayList中不断添加元素,其容量也自动增长。自动增长 会带来数据向新数组的重新拷贝,因此,如果可预知数据量的多少,可在构造 ArrayList时 指定其容量。在添加大量元素前,应用程序也可以使用 ensureCapacity 操作来增加 ArrayList 实例的容量,这可以减少递增式再分配的数量。

注意,此实现不是同步的。如果多个线程同时访问一个 ArrayList实例,而其中至少一 个线程从结构上修改了列表,那么它必须保持外部同步。

实现

对于 ArrayList而言,它实现 List接口、底层使用数组保存所有元素。其操作基本上是 对数组的操作。下面我们来分析 ArrayList的源代码:

1)  底层使用数组实现

private transient Object[] elementData;

2)  构造方法:

ArrayList 提供了三种方式的构造器,可以构造一个默认初始容量为 10 的空列表、构造 一个指定初始容量的空列表以及构造一个包含指定 collection 的元素的列表,这些元素按照 该 collection 的迭代器返回它们的顺序排列的。

 public ArrayList() {this(10);}public ArrayList(intinitialCapacity) {super();if (initialCapacity < 0)throw new IllegalArgumentException("IllegalCapacity:"+ initialCapaci ty);this.elementData = new Object[initialCapacity];}public ArrayList(Collection<? extendsE> c) {elementData = c.toArray();size = elementData.length;// c.toArray might (incorrectly) not return Object[] (see 6260652)if (elementData.getClass() != Object[].class)elementData = Arrays.copyOf(elementData, size, Object[].class);}

3)  存储:

ArrayList 提供了 set(int index, E element)、add(E e)、add(int index, E element)、addAll(Collection<? extends E> c)、addAll(int index, Collection<? extends E>c)这些添加元素的方法。下面我们一一讲解:

  // 用指定的元素替代此列表中指定位置上的元素,并返回以前位于该位置上的元素。

 public Eset(intindex, E element){RangeCheck(index);E oldValue = (E) elementData[index];elementData[index] = element;returnoldValue;}

 // 将指定的元素添加到此列表的尾部。publicbooleanadd(E e) {ensureCapacity(size + 1);elementData[size++] = e;return true;}

// 将指定的元素插入此列表中的指定位置。// 如果当前位置有元素,则向右移动当前位于该位置的元素以及所有后续元素(将其索引加 1)。publicvoidadd(intindex, Eelement) {if (index > size ||index < 0)throw new IndexOutOfBoundsException("Index:"+index+",Size:"+siz e);// 如果数组长度不足,将进行扩容。ensureCapacity(size+1);  // IncrementsmodCount!!// 将 elementData中从 Index位置开始、长度为size-index的元素,// 拷贝到从下标为index+1位置开始的新的elementData数组中。// 即将当前位于该位置的元素以及所有后续元素右移一个位置。
System.arraycopy(elementData, index, elementData, index + 1, size - inde x);elementData[index] = element;size++;}

 // 按照指定collection的迭代器所返回的元素顺序,将该collection中的所有元素添加到此列表的尾部。

 public boolean addAll(Collection<? extendsE> c) {Object[]a= c.toArray();int numNew = a.length;ensureCapacity(size + numNew); //IncrementsmodCountSystem.arraycopy(a, 0, elementData, size, numNew);size += numNew;return numNew != 0;}

// 从指定的位置开始,将指定collection中的所有元素插入到此列表中。public boolean addAll(intindex, Collection<? extendsE> c) {if (index > size ||index < 0)throw new IndexOutOfBoundsException("Index: " +index + ", Size: "+ size);Object[]a= c.toArray();int numNew = a.length;ensureCapacity(size + numNew); //IncrementsmodCountint numMoved = size - index;if (numMoved > 0)
System.arraycopy(elementData, index, elementData, index + numNew, numM oved);System.arraycopy(a, 0, elementData, index, numNew);size += numNew;return numNew != 0;}

4) 读取:

// 返回此列表中指定位置上的元素。

public E get(intindex) {RangeCheck(index);return(E) elementData[index];}

5)  删除:

ArrayList 提供了根据下标或者指定对象两种方式的删除功能。如下:

// 移除此列表中指定位置上的元素。public E remove(intindex) {RangeCheck(index);modCount++;E oldValue = (E) elementData[index];int numMoved = size - index - 1;if (numMoved > 0)
System.arraycopy(elementData, index+1, elementData, index, numMove d);elementData[--size] = null; // Let gc do its workreturn oldValue;
}

 // 移除此列表中首次出现的指定元素(如果存在)。这是应为 ArrayList 中允许存放重复的元素。public boolean remove(Object o){// 由于 ArrayList中允许存放null,因此下面通过两种情况来分别处理。if (o == null) {for(int index = 0; index < size; index++)if (elementData[index] == null) {// 类似 remove(intindex),移除列表中指定位置上的元素。fast Remove(index);return true;}
}else{for(int index = 0; index < size; index++)if(o.equals(elementData[index])) {fastRemove(index);return true;}}return false;}

注意:从数组中移除元素的操作,也会导致被移除的元素以后的所有元素的向左移动一个位置。

6)  调整数组容量

从上面介绍的向 ArrayList 中存储元素的代码中,我们看到,每当向数组中添加元素时, 都要去检查添加后元素的个数是否会超出当前数组的长度,如果超出,数组将会进行扩容, 以满足添加数据的需求。数组扩容通过一个公开的方法 ensureCapacity(int minCapacity)来 实现。在实际添加大量元素前,我也可以使用 ensureCapacity 来手动增加 ArrayList 实例的容量,以减少递增式再分配的数量。

public void ensureCapacity(intminCapacity) {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);}}

从上述代码中可以看出,数组进行扩容时,会将老数组中的元素重新拷贝一份到新的数组中,每次数组容量的增长大约是其原容量的 1.5 倍。这种操作的代价是很高的,因此在实际使用时,我们应该尽量避免数组容量的扩张。当我们可预知要保存的元素的多少时,要在构造 ArrayList实例时,就指定其容量,以避免数组扩容的发生。或者根据实际需求,通过 调用 ensureCapacity方法来手动增加 ArrayList实例的容量。

ArrayList 还给我们提供了将底层数组的容量调整为当前列表保存的实际元素的大小 的功能。它可以通过 trimToSize方法来实现。代码如下:

 public void trimToSize() {modCount++;int oldCapacity = elementData.length;if (size < oldCapacity) {elementData = Arrays.copyOf(elementData, size);}}

7) Fail-Fast 机制

 ArrayList也采用了快速失败的机制,通过记录 modCount参数来实现。在面对并发的 修改时,迭代器很快就会完全失败,而不是冒着在将来某个不确定时间发生任意不确定行为 的风险。具体介绍请参考深入Java集合:HashMap实现原理中的Fail-Fast 机制。

业务思想

ArrayList的学习总结略相似于HashMap但又有些不同的是,两者的数据结构。相继续HashMap之后,我们的知识越来越混杂,也越来越结合起来,串成一串,勾勒思维导图,对于我们的梳理是很有帮助的。


这篇关于深入Java集合:ArrayList实现原理的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1109579

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu