码迷,mamicode.com
首页 > 其他好文 > 详细

ArrayList动态扩容大小

时间:2019-06-17 12:59:00      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:aci   sci   element   max   原来   int   col   div   this   

    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);
    }

动态扩容后的大小为原来大小的1.5倍;

ArrayList动态扩容大小

标签:aci   sci   element   max   原来   int   col   div   this   

原文地址:https://www.cnblogs.com/jayinnn/p/11038993.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!