
Click here to download video on arraylist
Click here to download video on arrayList display
Array List is a subclass of AbstractList and implements List. Following is the signature of ArrayList:
public class ArrayList extends AbstractList implements List, Cloneable, Seriablizable
ArrayList includes a feature called dynamic arrays that can increase dynamically as and when needed. In other words, ArrayList is a dynamic array that stores objects. ArrayList size automatically increases when we add elements and shrinks when we remove elements.