java使用lambda表达式对List对象中的某个字段去重

本文介绍了如何使用Java8的StreamAPI和Collectors类对Person对象列表按ID进行去重,展示了两种不同的策略:一种是保留旧值,另一种是覆盖旧值并替换新值。
摘要由CSDN通过智能技术生成

根据对象属性的某个字段对其进行去重操作

// 存在一个Person对象
@Data
class Person {
    private int id;
    private String name;
}

//需要根据id对Person对象列表进行去重
public class Main {
    public static void main(String[] args) {
        List<Person> people = Arrays.asList(
            new Person(1, "Alice"),
            new Person(2, "Bob"),
            new Person(1, "Alice"),
            new Person(3, "Charlie")
        );

		//保留旧值
        Collection<Person> distinctPeople = people.stream()
            .collect(Collectors.toMap(
                Person::getId, 
                Function.identity(),
                (existing, replacement) -> existing))
            .values();
        //覆盖旧值,保留新值
        Collection<Person> distinctPeople = people.stream()
            .collect(Collectors.toMap(
                Person::getId, 
                Function.identity(),
                (existing, replacement) -> replacement))
            .values();

        distinctPeople.forEach(p -> System.out.println(p.getId() + ": " + p.getName()));
    }
}

/**
  *Person::getId: 这是一个keyMapper函数,它从Person对象中获取id字段作为Map的键。

  *Function.identity(): 这是一个valueMapper函数,它返回对象本身作为Map的值。

  *(existing, replacement) -> existing: 这是一个mergeFunction函数,在两个相同键值的情况下保留现有的元素(也就是说,不替换重复项)。
  *(existing, replacement) -> replacement: 这是一个mergeFunction函数,在两个相同键值的情况下替换现有的元素(也就是说,替换重复项)。
*/

//需要直接输出去重后的结果,也可以直接输出
System.out.println(people.stream().collect(Collectors.toMap(Person::getId, Function.identity(),
(existing, replacement) -> existing)).values().stream().map(Person::getId).collect(Collectors.joining(",")));
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值