用示例列出Java中的 removeAll() 方法
此方法用于从指定列表中删除集合中存在的所有元素。
句法:
boolean removeAll(Collection c)
参数:此方法只有参数,即要从给定列表中删除的元素的集合。
返回:如果元素被删除并且列表发生变化,此方法返回 True。
下面的程序显示了这种方法的实现。
方案一:
// Java code to show the implementation of
// removeAll method in list interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
// Initializing a list of type Linkedlist
List l = new LinkedList<>();
l.add(10);
l.add(30);
l.add(50);
l.add(70);
l.add(90);
System.out.println(l);
ArrayList arr = new ArrayList<>();
arr.add(30);
arr.add(50);
l.removeAll(arr);
System.out.println(l);
}
}
输出:
[10, 30, 50, 70, 90]
[10, 70, 90]
程序 2:下面是显示使用 Linkedlist 实现 list.removeAll() 的代码。
// Java code to show the implementation of
// removeAll method in list interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
// Initializing a list of type Linkedlist
List l = new LinkedList<>();
l.add("10");
l.add("30");
l.add("50");
l.add("70");
l.add("90");
System.out.println(l);
ArrayList arr = new ArrayList<>();
arr.add("30");
arr.add("50");
l.removeAll(arr);
System.out.println(l);
}
}
输出:
[10, 30, 50, 70, 90]
[10, 70, 90]
参考:
甲骨文文档