1、 默认数组长度
private static final int DEFAULT_CAPACITY = 10;
用户执行数组初始化长度;如果未指定,则数组默认长度是 10;
2、 扩容
int newCapacity = oldCapacity + (oldCapacity >> 1);
1、 默认数组长度
private static final int DEFAULT_CAPACITY = 10;
用户执行数组初始化长度;如果未指定,则数组默认长度是 10;
2、 扩容
int newCapacity = oldCapacity + (oldCapacity >> 1);
本文标题:ArrayList
本文链接:https://www.haomeiwen.com/subject/tntxoctx.html
网友评论