distinct() 方法去除流中重复元素,返回一个仅包含不重复元素的新流。语法:stream distinct()。用法:使用自定义比较器可按属性比较元素;流管道可先过滤元素再去除重复。实现基于 hashmap,时间复杂度为 o(n)。
Java 中 distinct() 的用法
distinct() 方法用于从一个流中去除重复元素,返回一个新的流,其中仅包含不重复的元素。
语法:
Stream<t> distinct()</t>
登录后复制
参数:
- 无
返回值:
一个新的流,其中仅包含不重复的元素。
使用示例:
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]</integer></integer>
登录后复制
注意:
- distinct() 比较的是对象的引用相等性。如果您需要比较对象的属性,可以使用自定义比较器。
- distinct() 的实现基于 HashMap,因此时间复杂度为 O(n),其中 n 是流中的元素数量。
进阶用法:
- 使用自定义比较器比较元素的属性:
Comparator<employee> employeeComparator = Comparator.comparing(Employee::getId); List<employee> employees = ...; List<employee> distinctEmployees = employees.stream() .distinct(employeeComparator) .toList();</employee></employee></employee>
登录后复制
- 使用流管道过滤元素,然后使用 distinct() 去除重复元素:
List<string> names = ...; List<string> distinctNames = names.stream() .filter(name -> name.length() > 5) .distinct() .toList();</string></string>
登录后复制
以上就是java中distinct的用法的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:pansz,转转请注明出处:https://www.dingdanghao.com/article/473194.html