判断List中是否有重复的元素。

list的初始值 uid都为1,  AccountData2单独设置了NickName("aaa");

 List<AccountData> AccountDataList =  new ArrayList<>();
        AccountData AccountData = new AccountData();
        AccountData AccountData2 = new AccountData();
        AccountData.setUid(1);
        AccountData2.setUid(1);
        AccountData2.setNickName("aaa");
        AccountDataList.add(AccountData);
        AccountDataList.add(AccountData2);

如果是比较对象中的单个值 如:id

 HashSet<Long> uidSet = new HashSet<>();
 AccountDataList.stream().forEach(t->{
            uidSet.add(t.getUid());
 });
 System.out.println( AccountDataList.size() == uidSet.size());

如果是比较整个对象 AccountData 

1.可直接放进HashSet中

HashSet uidSet1 = new HashSet<>(AccountDataList);
System.out.println(AccountDataList.size() == uidSet1.size());

 2.用stream()流的distinct方法

long distinctedSize = AccountDataList.stream().distinct().count();
System.out.println( AccountDataList.size() == distinctedSize);

 结果执行情况

false 

true 

true

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值