Java 中 AbstractSequentialList 的 removeAll() 方法


removeAll() 是从 AbstractCollection 类继承来的方法。它移除此集合中所有也包含在指定集合中的元素。

语法如下

public boolean removeAll(Collection<?> c)

此处,参数 c 是包含要从此集合中移除的元素的集合。

要使用 Java 中的 AbstractSequentialList 类,您需要导入以下包

import java.util.AbstractSequentialList;

以下是 Java 中实现 AbstractSequentialList removeAll() 方法的一个示例

示例

 在线演示

import java.util.LinkedList;
import java.util.AbstractSequentialList;
public class Demo {  
   public static void main(String[] args) {
      AbstractSequentialList<Integer> absSequential = new LinkedList<>();
      absSequential.add(210);
      absSequential.add(290);
      absSequential.add(350);
      absSequential.add(490);
      absSequential.add(540);
      absSequential.add(670);
      absSequential.add(870);
      System.out.println("Elements in the AbstractSequentialList1 = "+absSequential);
      AbstractSequentialList<Integer> absSequential2 = new LinkedList<>();
      absSequential2.add(670);
      absSequential2.add(870);
      System.out.println("Elements in the AbstractSequentialList2 = "+absSequential2);
      absSequential.removeAll(absSequential2);
      System.out.println("Elements in the updated AbstractSequentialList1 = "+absSequential);
   }
}

输出

Elements in the AbstractSequentialList1 = [210, 290, 350, 490, 540, 670, 870]
Elements in the AbstractSequentialList2 = [670, 870]
Elements in the updated AbstractSequentialList1 = [210, 290, 350, 490, 540]

更新时间:2019 年 7 月 30 日

68 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告