For Java ArrayList Example, see the following picture of a man stretching an elastic rubber band. The actual length of the rubber band is much smaller, but when stretched it can extend a lot more than its actual length and can be used to hold/bind much larger objects with it. Now, consider the next picture, that of a simple rope, it cannot stretch and will have a fixed length.

It can grow as, and when required to accommodate the elements it needs to store and when elements are removed, it can shrink back to a smaller size. So as our friend has an issue with the array he is using cannot be expanded or made to shrink, we will be using ArrayList. Arrays are like the rope shown in the above picture; they will have a fixed length, cannot be expanded nor reduced from the original length. So our stretchable rubber-band is much like the Array List whereas the rope can be considered as the array. Technically speaking, ArrayList Java is like a dynamic array or a variable-length array. Let us see and understand the following code snippet of Java ArrayList Syntax that will help you work around with ArrayList.

ArrayList Methods

ArrayList add: This is used to add elements to the Array List. If an ArrayList already contains elements, the new element gets added after the last element unless the index is specified. Syntax: add(Object o);

ArrayList remove: The specified element is removed from the list and the size is reduced accordingly. Alternately, you can also specify the index of the element to be removed. Syntax: remove(Object o);

Java array size: This will give you the number of elements in the Array List. Just like arrays, here too the first element starts with index 0. Syntax: int size();

ArrayList contains: This method will return true if the list contains the specified element. Syntax: boolean contains(Object o);

Java ArrayList Example

Following is a Java ArrayList Example: Output:
Note: For simplicity, the elements shown in above code are single character elements. We can add Strings, integers, etc. too.