[关闭]
@w1992wishes 2018-05-10T09:35:35.000000Z 字数 6538 阅读 1029

java容器源码分析--ArrayList(JDK1.8)

JAVA_java容器 源码分析


本篇结构:

一、前言

同HashMap一样,ArrayList是很常用的集合类了,其源码相对来说简单一些,下面简单分析一下。

二、数据结构

ArrayList的底层数据结构就是一个Object数组,一个可变的数组,对于其的所有操作都是通过数组来实现的。

三、重要参数

  1. // 默认容量,默认10个元素
  2. private static final int DEFAULT_CAPACITY = 10;
  3. // 空对象数组
  4. private static final Object[] EMPTY_ELEMENTDATA = {};
  5. // 默认空对象数组,通过空的构造参数生成的ArrayList实例
  6. private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};
  7. // ArrayList对象实际上就是一个容器数组
  8. transient Object[] elementData; // non-private to simplify nested class access
  9. // 实际元素大小,默认为0
  10. private int size;
  11. // 最大数组容量
  12. private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;

四、常用方法

  1. public class ArrayListTest {
  2. public static void main(String[] args) {
  3. // 1.new
  4. List<String> list = new ArrayList<>();
  5. // 2.add
  6. list.add("java");
  7. list.add("python");
  8. list.add("kotlin");
  9. // 3.get
  10. System.out.println("the second element is: " + list.get(1));
  11. // 4.set
  12. list.set(1, "c++");
  13. // 5.遍历
  14. for (String s : list){
  15. System.out.println(s);
  16. }
  17. }
  18. }

还有remove,indexOf等方法,就不一一列了。

对于循环遍历,有普通的for循环(for ... i这种),增强for循环,迭代器。一般而言,普通for循环效率高些,增强for循环是使用迭代器来实现的,使用更加简单。

五、源码分析

5.1、构造方法

  1. // 1.无参构造
  2. public ArrayList() {
  3. this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;
  4. }
  5. // 2.指定初始容量
  6. public ArrayList(int initialCapacity) {
  7. if (initialCapacity > 0) {
  8. this.elementData = new Object[initialCapacity];
  9. } else if (initialCapacity == 0) {
  10. this.elementData = EMPTY_ELEMENTDATA;
  11. } else {
  12. throw new IllegalArgumentException("Illegal Capacity: "+
  13. initialCapacity);
  14. }
  15. }
  16. // 3.传入一个集合,会把集合类型转化为数组类型,并赋值给elementData
  17. public ArrayList(Collection<? extends E> c) {
  18. elementData = c.toArray();
  19. if ((size = elementData.length) != 0) {
  20. // c.toArray might (incorrectly) not return Object[] (see 6260652)
  21. if (elementData.getClass() != Object[].class)
  22. elementData = Arrays.copyOf(elementData, size, Object[].class);
  23. } else {
  24. // replace with empty array.
  25. this.elementData = EMPTY_ELEMENTDATA;
  26. }
  27. }

三个构建方法都相对简单,直接看代码应该都能清楚。

5.2、add(E e)

  1. // 添加元素总体可分为两步,一步是容量检测&容量动态增加,另一步是将新的元素添加到数组的末尾
  2. public boolean add(E e) {
  3. // 1.容量检测&容量动态增加
  4. ensureCapacityInternal(size + 1); // Increments modCount!!\
  5. // 2.将新的元素添加到数组的末尾
  6. elementData[size++] = e;
  7. return true;
  8. }
  9. // 调用该方法保证内部容量
  10. private void ensureCapacityInternal(int minCapacity) {
  11. // 1-1.如果数组容器为空,初始化容器的容量,默认为10
  12. if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {
  13. minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity);
  14. }
  15. // 1-2.确保数组长度大于等于最小容量
  16. ensureExplicitCapacity(minCapacity);
  17. }
  18. private void ensureExplicitCapacity(int minCapacity) {
  19. // modCount为操作次数,每次数据结构改变,都会调用该属性modCount++
  20. modCount++;
  21. // overflow-conscious code
  22. // 当容器数组的长度已经满足不了需求的最小容量时,进行扩容
  23. if (minCapacity - elementData.length > 0)
  24. grow(minCapacity);
  25. }
  26. private void grow(int minCapacity) {
  27. // overflow-conscious code
  28. int oldCapacity = elementData.length;
  29. //位运算符扩容,容量在当前的基础上+50%
  30. int newCapacity = oldCapacity + (oldCapacity >> 1);
  31. if (newCapacity - minCapacity < 0)
  32. newCapacity = minCapacity;
  33. if (newCapacity - MAX_ARRAY_SIZE > 0)
  34. newCapacity = hugeCapacity(minCapacity);
  35. // minCapacity is usually close to size, so this is a win:
  36. // 扩容完毕,将扩容后的数组赋值给elementData
  37. elementData = Arrays.copyOf(elementData, newCapacity);
  38. }

add方法先要确保数组的容量足够,防止数组已经填满还往里面添加数据造成数组越界:
1. 如果数组容量足够,则直接在数组的末尾添加元素;
2. 如果数组容量不够,则进行扩容,容量为原数组容量的1.5倍,然后将原数组中的元素全部copy到新数组中,接着再往数组末尾添加元素;

也可以发现,如果new了一个无参的ArrayList对象,第一次调用add时会初始化一个容量为10的数组。

5.3、重载的add(int index, E element)

  1. // 在确定索引下新增元素
  2. public void add(int index, E element) {
  3. // 1.首先要确保该索引要>0并且<=数组长度(index <= size && index > 0)
  4. rangeCheckForAdd(index);
  5. // 2.确保数组容量>=size+1
  6. ensureCapacityInternal(size + 1); // Increments modCount!!
  7. // 3.将index索引位置(包括)及之后的元素都向后挪动一位
  8. System.arraycopy(elementData, index, elementData, index + 1,
  9. size - index);
  10. // 4.将index索引处设置为新增元素
  11. elementData[index] = element;
  12. size++;
  13. }

因为涉及数组的复制,可以想象如果index后面有大量的元素,所消耗的性能是非常大的。

5.4、set(int index, E element)

  1. public E set(int index, E element) {
  2. // 1.首先确保索引不能大于数组长度
  3. rangeCheck(index);
  4. E oldValue = elementData(index);
  5. // 2.直接替换元素
  6. elementData[index] = element;
  7. return oldValue;
  8. }

该方法比较简单。

5.5、get(int index)

  1. public E get(int index) {
  2. // 1.防止越界,索引不能大于数组长度
  3. rangeCheck(index);
  4. // 2.直接返回索引处的元素
  5. return elementData(index);
  6. }

get方法也很简单,直接返回数组索引处得元素。

5.6、remove(int index)

  1. public E remove(int index) {
  2. // 1.防止越界,索引不能大于数组长度
  3. rangeCheck(index);
  4. // 操作数量+1
  5. modCount++;
  6. E oldValue = elementData(index);
  7. // 2.将index后的元素都向前挪动一位,原index的元素就删除了
  8. int numMoved = size - index - 1;
  9. if (numMoved > 0)
  10. System.arraycopy(elementData, index+1, elementData, index,
  11. numMoved);
  12. // 3.数组长度减1
  13. elementData[--size] = null; // clear to let GC do its work
  14. return oldValue;
  15. }

可见删除操作也是很耗性能的,因为涉及到了数组的复制。

5.7、重载的remove(Object o)

  1. // 因为Arraylist可以添加null,所以分两种情况,为null和非null
  2. public boolean remove(Object o) {
  3. // 1.如果删除的元素是null,则遍历删除第一个null
  4. if (o == null) {
  5. for (int index = 0; index < size; index++)
  6. if (elementData[index] == null) {
  7. fastRemove(index);
  8. return true;
  9. }
  10. // 2.非null,删除第一个equals的元素
  11. } else {
  12. for (int index = 0; index < size; index++)
  13. if (o.equals(elementData[index])) {
  14. fastRemove(index);
  15. return true;
  16. }
  17. }
  18. return false;
  19. }
  20. // 删除,同样是将index后的元素都向前挪动一位
  21. private void fastRemove(int index) {
  22. modCount++;
  23. int numMoved = size - index - 1;
  24. if (numMoved > 0)
  25. System.arraycopy(elementData, index+1, elementData, index,
  26. numMoved);
  27. elementData[--size] = null; // clear to let GC do its work
  28. }

六、疑问解答

6.1、为什么不能在ArrayList的For-Each循环中删除元素?

  1. public class ArrayListForEachTest {
  2. public static void main(String[] args) {
  3. List<String> list = new ArrayList<>();
  4. list.add("a");
  5. list.add("b");
  6. list.add("c");
  7. list.add("d");
  8. list.add("e");
  9. list.add("f");
  10. for (String s : list) {
  11. if (s.equals("b")){
  12. list.remove(s);
  13. }
  14. }
  15. }
  16. }

除了删除倒数第二个元素外,其它都会报错:

分析一下原因:

因为for-Each删除是基于迭代器。

这里面主要有两个变量在捣鬼,expectedModCount和modCount:

modCount前面介绍过,记录了ArrayList的操作次数,expectedModCount则是期望的操作此时,在其内部类Itr中可以找到。

先看看迭代器的代码,再来分析。

  1. private class Itr implements Iterator<E> {
  2. int cursor; // index of next element to return
  3. int lastRet = -1; // index of last element returned; -1 if no such
  4. int expectedModCount = modCount;
  5. public boolean hasNext() {
  6. return cursor != size;
  7. }
  8. @SuppressWarnings("unchecked")
  9. public E next() {
  10. checkForComodification();
  11. int i = cursor;
  12. if (i >= size)
  13. throw new NoSuchElementException();
  14. Object[] elementData = ArrayList.this.elementData;
  15. if (i >= elementData.length)
  16. throw new ConcurrentModificationException();
  17. cursor = i + 1;
  18. return (E) elementData[lastRet = i];
  19. }
  20. }

如上,当遍历时,会基于迭代器进行,此时expectedModCount = modCount,在遍历的过程中一直到remove操作,这两个值都一样,但是一旦执行了remove操作,由前面分析remove方法可知,modCount会加1,接着继续执行,会再次调用itr的hasNext()方法,为true时,调用next方法,该方法会调用checkForComodification方法,这时modCount != expectedModCount,抛出异常。

  1. final void checkForComodification() {
  2. if (modCount != expectedModCount)
  3. throw new ConcurrentModificationException();
  4. }

但如果是删除倒数第二个元素,删除后,cursor已经等于size-1,而由于已成功删除一个元素,此处的size也是原size()-1,两者相等,所以hasNext返回false,也就不会调用next,所有不会报错。

为什么不能在ArrayList的For-Each循环中删除元素

6.2、ArrayList面试题

了解了以上,相信下面几道面试题应该能解答了。

关于ArrayList的5道面试题

七、分析总结

  1. ArrayList底层是一个数组;
  2. 对ArrayList而言,主要是在内部数组中增加一项,指向所添加的元素,如果容量不够,会在原先容量基础上扩容至1.5倍;
  3. 在ArrayList的中间插入或删除一个元素意味着这个列表中剩余的元素都会被移动;
  4. ArrayList的空间浪费主要体现在在list列表的结尾预留一定的容量空间;
  5. 常用方法:
    get(index)直接读取第几个下标,时间复杂度 O(1)
    add(E)添加元素,直接在后面添加,时间复杂度 O(1)
    add(index, E) 添加元素,在第几个元素后面插入,后面的元素需要向后移动,时间复杂度 O(n)
    remove(index),remove(E)删除元素,后面的元素需要逐个移动,时间复杂度 O(n)

当操作是大量查询和获取,或需要随机地访问其中的元素时,ArrayList非常适合,如果是向某个位置添加元素或者删除元素,因为涉及数组的复制,ArrayList效率不高。

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注