📅  最后修改于: 2022-03-11 14:55:34.398000             🧑  作者: Mango
//Creating the ArrayList
ArrayList names = new ArrayList<>();
//Removing all entries in the ArrayList using the clear() method
names.clear()
//Removing all entries in the ArrayList using the removeAll() method
names.removeAll(names)