Array List

Each ArrayList instance has a capacity. The capacity is the size of the array used to store the elements in the list. It is always at least as large as the list size. As elements are added to an ArrayList, its capacity grows automatically. The details of the growth policy are not specified beyond the fact that adding an element has constant amortized time cost.

http://java.sun.com/j2se/1.5.0/docs/api/java/util/ArrayList.html


EditText of this page (last edited November 13, 2014) or FindPage with title or text search