用示例列出Java中的 retainAll() 方法
此方法用于将集合中存在的所有元素从指定集合保留到列表中。
句法:
boolean retainAll(Collection c)
参数:此方法只有参数,即要保留在给定列表中的元素的集合。
返回:如果元素被保留并且列表发生变化,此方法返回 True。
下面的程序显示了这种方法的实现。
方案一:
// Java code to show the implementation of
// retainAll 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(1);
l.add(3);
l.add(5);
l.add(7);
l.add(9);
System.out.println(l);
ArrayList arr = new ArrayList<>();
arr.add(3);
arr.add(5);
l.retainAll(arr);
System.out.println(l);
}
}
输出:
[1, 3, 5, 7, 9]
[3, 5]
程序 2:下面是显示使用 Linkedlist 实现 list.retainAll() 的代码。
// Java code to show the implementation of
// retainAll 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.retainAll(arr);
System.out.println(l);
}
}
输出:
[10, 30, 50, 70, 90]
[30, 50]
参考:
甲骨文文档