91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java中list的removeall方法如何使用

小億
188
2023-09-23 00:00:45
欄目: 編程語言

在Java中,List的removeAll方法用于從當前List中移除另一個Collection中包含的所有元素。該方法的使用方式如下:

  1. 創建一個List對象:
List<Integer> list = new ArrayList<>();
  1. 初始化List對象:
list.add(1);
list.add(2);
list.add(3);
list.add(4);
list.add(5);
  1. 創建一個Collection對象,該對象包含需要移除的元素:
Collection<Integer> collection = new ArrayList<>();
collection.add(2);
collection.add(4);
collection.add(6);
  1. 使用removeAll方法將collection中的元素從list中移除:
list.removeAll(collection);
  1. 輸出移除后的list:
System.out.println(list);

完整示例代碼如下:

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
public class Main {
public static void main(String[] args) {
List<Integer> list = new ArrayList<>();
list.add(1);
list.add(2);
list.add(3);
list.add(4);
list.add(5);
Collection<Integer> collection = new ArrayList<>();
collection.add(2);
collection.add(4);
collection.add(6);
list.removeAll(collection);
System.out.println(list);
}
}

輸出結果為:

[1, 3, 5]

可以看到,移除了list中與collection中相同的元素2和4,最終list中只剩下了1、3、5。

0
湘西| 丹棱县| 石泉县| 菏泽市| 扶绥县| 麦盖提县| 巴林左旗| 正镶白旗| 丽水市| 蚌埠市| 班戈县| 西乌珠穆沁旗| 张家川| 弥渡县| 阳泉市| 东平县| 铜川市| 临洮县| 孟村| 孝义市| 吉安县| 闽清县| 嵊州市| 金坛市| 朝阳市| 山丹县| 沂南县| 上高县| 保定市| 大姚县| 德州市| 德清县| 子洲县| 莱芜市| 亚东县| 霍邱县| 海南省| 兴和县| 景洪市| 南投县| 吉林省|