distinct() 方法去除流中重复元素,返回一个仅包含不重复元素的新流。语法:Stream<T> distinct()。用法:使用自定义比较器可按属性比较元素;流管道可先过滤元素再去除重复。实现基于 HashMap,时间复杂度为 O(n)。

Java 中 distinct() 的用法
distinct() 方法用于从一个流中去除重复元素,返回一个新的流,其中仅包含不重复的元素。
语法:
<code class="java">Stream<T> distinct()</code>
参数:
立即学习“Java免费学习笔记(深入)”;
返回值:
一个新的流,其中仅包含不重复的元素。
使用示例:
<code class="java">List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 1, 3, 5);
// 使用 distinct() 去除重复元素
List<Integer> distinctNumbers = numbers.stream()
.distinct()
.toList();
System.out.println(distinctNumbers); // 输出:[1, 2, 3, 4, 5]</code>注意:
进阶用法:
<code class="java">Comparator<Employee> employeeComparator = Comparator.comparing(Employee::getId);
List<Employee> employees = ...;
List<Employee> distinctEmployees = employees.stream()
.distinct(employeeComparator)
.toList();</code><code class="java">List<String> names = ...;
List<String> distinctNames = names.stream()
.filter(name -> name.length() > 5)
.distinct()
.toList();</code>以上就是java中distinct的用法的详细内容,更多请关注php中文网其它相关文章!
java怎么学习?java怎么入门?java在哪学?java怎么学才快?不用担心,这里为大家提供了java速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号