How to add values to ArrayList?
In this post, we will learn how to add elements to ArrayList using java inbuilt methods. ArrayList class in java has been implemented based on the growable array which will be resized size automatically. Maintains the order of insertion of values added to it and permits adding all kinds of values including primitives, user-defined classes, wrapper classes and null values.
1) public boolean add(E e)
2) public void add(int index, E element)
Java ArrayList add methods:
Java ArrayList add method is overloaded and the following are the methods defined in it.1) public boolean add(E e)
2) public void add(int index, E element)

