中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
西充县| 桑日县| 固安县| 海宁市| 仁寿县| 贵港市| 台北县| 马边| 新巴尔虎左旗| 遂昌县| 灯塔市| 武定县| 武安市| 兴宁市| 固安县| 正阳县| 平舆县| 孟连| 故城县| 兴城市| 潜江市| 乌拉特中旗| 邵阳市| 昌江| 乐都县| 高州市| 出国| 孟村| 兴文县| 聊城市| 余干县| 建阳市| 兴和县| 泰州市| 巴林右旗| 磐安县| 张家港市| 定陶县| 新民市| 安康市| 容城县|