List判断是否存在重复的数据值


        //去重比较小技巧1
        long count = list.stream().map(IdAndString::getStr).distinct().count();
        if(size!=count){
        }


        //去重比较小技巧2
        Map> listMap = list.stream().collect(Collectors.groupingBy(po -> po.getStr()));
        int size1 = listMap.size();
        if(size!=size1){
        }
 

你可能感兴趣的:(list,windows,数据结构)