扫码一下
查看教程更方便
removeAll() 方法用于删除存在于指定集合中的动态数组元素。
removeAll() 方法的语法为:
arraylist.removeAll(Collection c);
注 :arraylist 是 ArrayList 类的一个对象。
如果从动态数组成功删除元素返回 true。
如果动态数组中存在的元素类与指定 collection 的元素类不兼容,则抛出 ClassCastException 异常。
如果动态数组中包含 null 元素,并且指定 collection 不允许 null 元素,则抛出 NullPointerException 异常。
从动态数组列表中删除所有元素:
实例
import java.util.ArrayList; public class Main { public static void main(String[] args){ // 创建一个数组 ArrayList<String> sites = new ArrayList<>(); sites.add("Google"); sites.add("Jiyik"); sites.add("Taobao"); System.out.println("网站列表: " + sites); // 删除所有元素 sites.removeAll(sites); System.out.println("所有 removeAll() 方法后: " + sites); } }
执行以上程序输出结果为:
网站列表: [Google, Jiyik, Taobao]
所有 removeAll() 方法后: []
在上面的实例中,我们创建了一个名为 sites 的动态数组。该动态数组存储着网站的名称。
注意这一行:
sites.removeAll(sites);
sites 作为 removeAll() 方法的参数。
注意 :clear() 是动态数组中删除所有元素的最好方法。要了解更多信息,请访问 Java ArrayList clear()。