您好,登錄后才能下訂單哦!
怎么在java8項目中對List對象屬性去重?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
private List<UserCar> removeDupliByRecordId(List<UserCar> userCars) { Set<UserCar> personSet = new TreeSet<UserCar>((o1, o2) ->o1.getRecordId().compareTo(o2.getRecordId())); personSet.addAll(userCars); return new ArrayList<UserCar>(personSet); }
這也是大多數(shù)人第一想到的,借助 TreeSet 去重,其中 TreeSet 的其中一個構(gòu)造函數(shù)接收一個排序的算法,同時這也會用到 TreeSet 的去重策略上.
public TreeSet(Comparator<? super E> comparator) { this(new TreeMap<>(comparator)); }
List<Person> unique = persons.stream().collect( Collectors.collectingAndThen( Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(Person::getName))), ArrayList::new) ); unique.forEach(p -> System.out.println(p));
List<String> names = new ArrayList<>();//用來臨時存儲person的id List<Person> personList = persons.stream().filter(// 過濾去重 v -> { boolean flag = !names.contains(v.getName()); names.add(v.getName()); return flag; } ).collect(Collectors.toList());
//根據(jù)id去重 examRoomModelLists = examRoomModelLists.stream().collect(Collectors.collectingAndThen(Collectors.toCollection( // 利用 TreeSet 的排序去重構(gòu)造函數(shù)來達到去重元素的目的 // 根據(jù)firstName去重 () -> new TreeSet<>(Comparator.comparing(ExamRoomModel::getId))), ArrayList::new));
em.setNoLoginExamineeCount((examinee.stream().map(ExamineeEntity::getStudentExamState).filter(x -> x == 0).collect(Collectors.toList())).size()); }
List<ExamRoomModel> filterList = examRoomModelLists.stream().filter(ExamRoomModel -> !Objects.equals(ExamRoomModel.getExamRoomStudentCount(), 0)).collect(Collectors.toList());
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。