make list empty java code example
Example 1: java create new empty list
List myList = new ArrayList();
Example 2: how to reset an arraylist in java
There are two ways to empty an ArrayList:
1. By using ArrayList.clear() method or with the help of ArrayList.
2. removeAll() method.