Насколько я помню, до Java 8 емкость по умолчанию ArrayList
составляла 10.
Удивительно, что комментарий конструктора default (void) все еще говорит: Constructs an empty list with an initial capacity of ten.
От ArrayList.java
:
/**
* 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 = {};
...
/**
* Constructs an empty list with an initial capacity of ten.
*/
public ArrayList() {
this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;
}