ArrayList Class »
By Ramakrishna on Nov 2, 2008 in ArrayList Class | 1 Comment
The ArrayList class extends AbstractList and implements the List interface. ArrayList supports dynamic arrays that can grow as needed. In Java, standard arrays are of a fixed length. After arrays are created, they cannot grow or shrink, which means that you may not know util run time precisely how large of an array you need. [...]
