我是靠谱客的博主 仁爱红牛,最近开发中收集的这篇文章主要介绍java stream distinct_Stream系列(七)distinct方法使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

99bb11b087dbc3d8403db7ceb65aef69.png

EmployeeTestCase.java

package com.example.demo;

import lombok.Data;

import lombok.ToString;

import lombok.extern.log4j.Log4j2;

import one.util.streamex.StreamEx;

import org.junit.Test;

import java.util.Collection;

import java.util.Comparator;

import java.util.List;

import java.util.Map;

import java.util.concurrent.ConcurrentHashMap;

import java.util.function.Function;

import java.util.function.Predicate;

import java.util.stream.Collectors;

import java.util.stream.LongStream;

import java.util.stream.Stream;

import static org.junit.Assert.assertEquals;

import static org.junit.Assert.assertTrue;

@Log4j2

public class EmployeeTestCase extends BaseTest{

@Test

public void distinct() {

//常规实现方式

List employeesDis = list.stream().distinct().collect(Collectors.toList());

assertEquals(employeesDis.size(),5);

//StreamEx 实现方式

List employeesDisBySalary2 = StreamEx.of(list).distinct(Employee::getSalary)

.peek(System.out::println).collect(Collectors.toList());

//Stream filter 实现方式

List employeesDisBySalary = list.stream().filter(distinctByKey(Employee::getSalary))

.collect(Collectors.toList());

assertEquals(employeesDisBySalary,employeesDisBySalary2);

}

private static Predicate distinctByKey(Function super T, ?> keyExtractor) {

Map seen = new ConcurrentHashMap<>();

return t -> seen.putIfAbsent(keyExtractor.apply(t), Boolean.TRUE) == null;

}

}

BaseTest.java

package com.example.demo;

import java.util.Arrays;

import java.util.List;

public class BaseTest {

protected static final List list = Arrays.asList(

new Employee(1, "Alex", 1000),

new Employee(2, "Michael", 2000),

new Employee(3, "Jack", 1500),

new Employee(4, "Owen", 1500),

new Employee(5, "Denny", 2000));

protected static final List> listFlat = Arrays.asList(

Arrays.asList(new Employee(1, "Alex", 1000),

new Employee(2, "Michael", 2000)),

Arrays.asList(new Employee(3, "Jack", 1500),

new Employee(4, "Owen", 1500)),

Arrays.asList(new Employee(5, "Denny", 2000)));

}

关注公众号,坚持每天3分钟学习

最后

以上就是仁爱红牛为你收集整理的java stream distinct_Stream系列(七)distinct方法使用的全部内容,希望文章能够帮你解决java stream distinct_Stream系列(七)distinct方法使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部