Java ArrayList removeAll() 方法
示例
从列表中删除所有项目
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
ArrayList<String> cars = new ArrayList<String>();
cars.add("Volvo");
cars.add("BMW");
cars.add("Ford");
cars.add("Mazda");
cars.add("Toyota");
cars.removeAll(cars);
System.out.println(cars);
}
}
定义和用法
The removeAll()
方法从列表中删除所有属于指定集合的项目。
语法
public boolean removeAll(Collection items)
参数值
参数 | 描述 |
---|---|
items | 必需。包含要从列表中删除的项目的集合。 |
技术细节
返回 | 如果列表更改,则返回 true ,否则返回 false 。 |
---|---|
抛出 |
NullPointerException - 如果集合为 null。 |
更多示例
示例
从列表中删除多个项目
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
ArrayList<String> cars = new ArrayList<String>();
cars.add("Volvo");
cars.add("BMW");
cars.add("Ford");
cars.add("Mazda");
cars.add("Toyota");
ArrayList<String> remove = new ArrayList<String>();
remove.add("Volvo");
remove.add("Ford");
remove.add("Mazda");
cars.removeAll(remove);
System.out.println(cars);
}
}
相关页面
❮ ArrayList 方法