阅读量:1
开发中比较两个集合的不同点,例如需要对于两个集合取差集,下面列举了几种方式。
方式1:使用Java 8的Stream流
整个集合过滤
List<String> list1 = Arrays.asList("a", "b", "c", "d"); List<String> list2 = Arrays.asList("c", "d", "e", "f"); // 获取差集 List<String> difference1 = list1.stream() .filter(element -> !list2.contains(element)) .collect(Collectors.toList()); // 获取list2中不在list1的元素 List<String> difference2 = list2.stream() .filter(element -> !list1.contains(element)) .collect(Collectors.toList());
根据集合中对象的属性来过滤
// 根据集合中对象的name属性来过滤 public void testStreamNoneMatch(List<StudentDTO> originalDto, List<StudentDTO> newDto) { List<StudentDTO> boy = originalDto.stream() .filter(item -> item.getGender() == 1 && newDto.stream().anyMatch(dto -> dto.getName().equals(item.getName()))).collect(Collectors.toList()); log.info("性别为男生,且名字相同的人员为{}", JSONObject.toJSONString(boy)); }
方式2:使用Java集合类的removeAll()方法
List<String> list1Copy = new ArrayList<>(list1); List<String> list2Copy = new ArrayList<>(list2); // 获取list1中不在list2的元素 list1Copy.removeAll(list2); List<String> difference1 = list1Copy; // 获取list2中不在list1的元素 list2Copy.removeAll(list1); List<String> difference2 = list2Copy;
方式3:使用Google Guava库的Sets.difference()方法
List<String> list1 = ...; List<String> list2 = ...; // 获取list1中不在list2的元素 Set<String> set1 = Sets.newHashSet(list1); Set<String> set2 = Sets.newHashSet(list2); Set<String> difference1 = Sets.difference(set1, set2); // 获取list2中不在list1的元素 Set<String> difference2 = Sets.difference(set2, set1);
方式4:使用Apache Commons Collections的ListUtils.subtract()方法
List<String> list1 = ...; List<String> list2 = ...; // 获取list1中不在list2的元素 List<String> difference1 = ListUtils.subtract(list1, list2); // 获取list2中不在list1的元素 List<String> difference2 = ListUtils.subtract(list2, list1);
注意:方式有很多,大家可根据项目需求和已引入的库,选择合适的方法来计算集合的差集。
有更好的方式或想法,欢迎大家评论区留言,互相学习~