注释版本JDK代码地址:https://gitee.com/bingbinggo/jdk-source-learn.git
ArrayList总结
public class ArrayList<E> extends AbstractList<E> implements List<E>, RandomAccess, Cloneable, java.io.Serializable
ArrayList实际上是一个动态数组,容量可以动态的增长,其继承了AbstractList,实现了List, RandomAccess, Cloneable, java.io.Serializable这些接口。
RandomAccess接口,被List实现之后,表明List提供了随机访问功能,也就是通过下标获取元素对象的功能。
Java中的遍历(遍历集合或数组的几种方式)
创建一个ArrayList对象
ArrayList<String> list = new ArrayList<>();
源码:
/** * Constructs an empty list with an initial capacity of ten. */ public ArrayList() { this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA; }
多次new出来的新对象,都执行同一个引用。
方法一:Add方法
/** * 在数组末尾添加元素 * Appends the specified element to the end of this list. * * @param e element to be appended to this list * @return <tt>true</tt> (as specified by {@link Collection#add}) */ public boolean add(E e) { ensureCapacityInternal(size + 1); // Increments modCount!! elementData[size++] = e; return true; }
1 扩容检查
2 将来元素赋值到数组[size]的地方
3 size+1
看下扩容检查及扩容源码:
/** * 扩容检查 * @param minCapacity */ private void ensureCapacityInternal(int minCapacity) { ensureExplicitCapacity(calculateCapacity(elementData, minCapacity)); } private void ensureExplicitCapacity(int minCapacity) { modCount++; // overflow-conscious code if (minCapacity - elementData.length > 0) // 数组已满 grow(minCapacity); } /** * 数组扩容 * Increases the capacity to ensure that it can hold at least the * number of elements specified by the minimum capacity argument. * * @param minCapacity the desired minimum capacity */ private void grow(int minCapacity) { // overflow-conscious code int oldCapacity = elementData.length; //oldCapacity>>1 表示将oldCapacity右移一位(位运算),相当于除2。再加上1,相当于新容量扩容1.5倍。 int newCapacity = oldCapacity + (oldCapacity >> 1); //如果新容量小于最小容量,按照最小容量进行扩容 if (newCapacity - minCapacity < 0) newCapacity = minCapacity; if (newCapacity - MAX_ARRAY_SIZE > 0) newCapacity = hugeCapacity(minCapacity); // minCapacity is usually close to size, so this is a win: // 将elementData拷贝到一个新的容量中 elementData = Arrays.copyOf(elementData, newCapacity); }
方法二:add(int index, E element)在指定位置添加元素
这个方法可以看到在数组中间位置添加元素,要把该位置后面的元素都移动一次,成本开销还是挺大的。
/** * Inserts the specified element at the specified position in this * list. Shifts the element currently at that position (if any) and * any subsequent elements to the right (adds one to their indices). * * @param index index at which the specified element is to be inserted * @param element element to be inserted * @throws IndexOutOfBoundsException {@inheritDoc} */ public void add(int index, E element) { // 越界异常检测 如果越界就会抛出下标越界异常 rangeCheckForAdd(index); //扩容检查 ensureCapacityInternal(size + 1); // Increments modCount!! //将指定下标空出 具体作法就是index及其后的所有元素后移一位 System.arraycopy(elementData, index, elementData, index + 1, size - index); //将要添加元素赋值到空出来的指定下标处 elementData[index] = element; // 长度加一 size++; }
ArrayList支持两种删除元素的方式
下面我们看一下ArrayList的实现
方法三:remove(int index) 删除指定位置的元素
/** * 移除list中指定位置的元素 * Removes the element at the specified position in this list. * 所有后续元素左移 下标减1 * Shifts any subsequent elements to the left (subtracts one from their * indices). * 参数是要移除元素的下标 * @param index the index of the element to be removed * 返回值是被移除的元素 * @return the element that was removed from the list * @throws IndexOutOfBoundsException {@inheritDoc} */ public E remove(int index) { // 检查下标是否合法 rangeCheck(index); //修改次数统计 modCount++; //获取这个下标上的值 E oldValue = elementData(index); //将该元素后面的元素前移,最后一个元素置空 //计算出需要移动的元素个数 (因为需要将后续元素左移一位 此处计算出来的是后续元素的位数) int numMoved = size - index - 1; //如果这个值大于0 说明后续有元素需要左移 是0说明被移除的对象就是最后一位元素 if (numMoved > 0) //索引index之后的所有元素左移一位 覆盖掉index位置上的元素 System.arraycopy(elementData, index+1, elementData, index, numMoved); // 最后一个元素置为空 这样就可以被gc回收了 elementData[--size] = null; // clear to let GC do its work //返回index位置上的元素 return oldValue; }
方法四:remove(Object o) 移除特定的元素。会删除和参数匹配的第一个元素
/** * //移除特定元素 * Removes the first occurrence of the specified element from this list, * if it is present. If the list does not contain the element, it is * unchanged. More formally, removes the element with the lowest index * <tt>i</tt> such that * <tt>(o==null ? get(i)==null : o.equals(get(i)))</tt> * (if such an element exists). Returns <tt>true</tt> if this list * contained the specified element (or equivalently, if this list * changed as a result of the call). * * @param o element to be removed from this list, if present * @return <tt>true</tt> if this list contained the specified element */ public boolean remove(Object o) { //如果元素是null 遍历数组移除第一个null if (o == null) { for (int index = 0; index < size; index++) if (elementData[index] == null) { //遍历找到第一个null元素的下标 调用下标移除元素的方法 fastRemove(index); return true; } } else { //找到元素对应的下标 调用下标移除元素的方法 for (int index = 0; index < size; index++) if (o.equals(elementData[index])) { fastRemove(index); return true; } } return false; } /* * //按照下标移除元素 * Private remove method that skips bounds checking and does not * return the value removed. */ private void fastRemove(int index) { modCount++; int numMoved = size - index - 1; if (numMoved > 0) System.arraycopy(elementData, index+1, elementData, index, numMoved); elementData[--size] = null; // clear to let GC do its work }
ArrayList总结
transient修饰的属性意味着不会被序列化,也就是说在序列化ArrayList的时候,不序列化elementData。
为什么要这么做呢?
所以说不是不序列化 而是不全部序列化。
/** * Save the state of the <tt>ArrayList</tt> instance to a stream (that * is, serialize it). * * @serialData The length of the array backing the <tt>ArrayList</tt> * instance is emitted (int), followed by all of its elements * (each an <tt>Object</tt>) in the proper order. */ private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException{ // Write out element count, and any hidden stuff int expectedModCount = modCount; s.defaultWriteObject(); // Write out size as capacity for behavioural compatibility with clone() s.writeInt(size); // Write out all elements in the proper order. for (int i=0; i<size; i++) { s.writeObject(elementData[i]); } if (modCount != expectedModCount) { throw new ConcurrentModificationException(); } }
标准答案
那么问题来了
ArrayList有没有办法线程安全?
Collections工具类有一个synchronizedList方法
可以把list变为线程安全的集合,但是意义不大,因为可以使用Vector
Vector为什么是线程安全的?
Vector的关键方法都使用了synchronized修饰。
参考文章:https://juejin.cn/post/6844903550129012743,https://juejin.cn/post/6863108420552261646