美文网首页
java容器- ArrayList-大概了解

java容器- ArrayList-大概了解

作者: MJLDG | 来源:发表于2019-12-28 10:35 被阅读0次

ArrayList 和 LinkedList 都继承AbstractList并实现List接口,都是java容器集合中的一部分
存储的元素都是有序的,可以重复的。

ArrayList 实现了RandomAccess接口,支持快速随机访问,LinkedList 不支持,只能顺序访问元素,一个个的遍历访问
ArrayList 底层是由数组实现的

    /**
     * Shared empty array instance used for default sized empty instances. We
     * distinguish this from EMPTY_ELEMENTDATA to know how much to inflate when
     * first element is added.
     */
    private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};
    /**
     * The array buffer into which the elements of the ArrayList are stored.
     * The capacity of the ArrayList is the length of this array buffer. Any
     * empty ArrayList with elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA
     * will be expanded to DEFAULT_CAPACITY when the first element is added.
     */
    transient Object[] elementData; // non-private to simplify nested class access

底层有一个elementData数组,用来存储元素。

无参构造方法时elementData是一个默认空数组

   /**
     * Constructs an empty list with an initial capacity of ten.
     */
    public ArrayList() {
        this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;
    }

数组大小最大为MAX_ARRAY_SIZE,因为一些虚拟机会在数组中保留一些标题数据

    /**
     * The maximum size of array to allocate.
     * Some VMs reserve some header words in an array.
     * Attempts to allocate larger arrays may result in
     * OutOfMemoryError: Requested array size exceeds VM limit
     */
    private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;

每次添加元素,即调用add系列方法时,都有可能触发数组的扩容,因为添加元素前,必须要
保证数组能存放得下元素,所有如果当elementData 数组大小低于最低容量时(即当前数组内元素数量+1)
会触发数组扩容,扩容后容量为当前数组大小的1.5倍,但是最低都为10

    /**
     * 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;
    }
  private static int calculateCapacity(Object[] elementData, int minCapacity) {
        if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {
            return Math.max(DEFAULT_CAPACITY, minCapacity);
        }
        return 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);
    }

这里表示扩容为原来数组大小的1.5倍,但是最低容量都为10

   /**
     * 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;
        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 = Arrays.copyOf(elementData, newCapacity);
    }

相关文章

网友评论

      本文标题:java容器- ArrayList-大概了解

      本文链接:https://www.haomeiwen.com/subject/gzthnctx.html