Java中list.stream方法的去重操作有哪些

avatar
作者
猴君
阅读量:0

在Java中,可以使用list.stream().distinct()方法来进行去重操作,该方法会返回一个去除重复元素的流。此外,还可以结合使用Collectors.toSet()或Collectors.toMap()方法来实现去重操作。具体示例如下:

  1. 使用distinct()方法:
List<Integer> list = Arrays.asList(1, 2, 3, 1, 2, 4); List<Integer> distinctList = list.stream().distinct().collect(Collectors.toList()); System.out.println(distinctList); // 输出 [1, 2, 3, 4] 
  1. 使用Collectors.toSet()方法:
List<Integer> list = Arrays.asList(1, 2, 3, 1, 2, 4); Set<Integer> distinctSet = list.stream().collect(Collectors.toSet()); System.out.println(distinctSet); // 输出 [1, 2, 3, 4] 
  1. 使用Collectors.toMap()方法:
List<Integer> list = Arrays.asList(1, 2, 3, 1, 2, 4); Map<Integer, Integer> distinctMap = list.stream().collect(Collectors.toMap(Function.identity(), Function.identity(), (e1, e2) -> e1)); System.out.println(distinctMap.keySet()); // 输出 [1, 2, 3, 4] 

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!