对List集合中的对象,按照某几个属性去重

先看代码

//NoticeUserInfo 这个对象有 name,phone,mail这个几个属性
//正常数据 (针对这个list去重)
List<NoticeUserInfo> normalUserInfo = new ArrayList<>();

Set<NoticeUserInfo> playerSet = new TreeSet<>(Comparator.comparing(o -> (o.getUserName() + "" + o.getPhone() + "" + o.getMail())));

playerSet.add(normaUserInfo);

//其实用到的是set的不可重复的特性

 

posted @ 2022-06-17 10:43  xxfcode  阅读(134)  评论(0编辑  收藏  举报