List.clear() has the following syntax.
void clear()
In the following code shows how to use List.clear() method.
import java.util.ArrayList; import java.util.List; /*from w w w .j av a2s.co m*/ public class Main { public static void main(String args[]) throws Exception { List<String> list = new ArrayList<String>(); list.add("A"); list.add("B"); list.add("C"); list.clear(); System.out.println(list); } }
The code above generates the following result.