1.对象集合:
//单独String集合 List<Student> list = new ArrayList<>(); list.add(Student.builder().id("1").name("1").build()); list.add(Student.builder().id("2").name("3").build()); list.add(Student.builder().id("1").name("1").build()); list.add(Student.builder().id("12").name("1").build()); List<Student> collect = list.stream().filter(i -> ObjectUtil.isNotEmpty(i)) // list 对应的 Stream 并过滤"" .collect(Collectors.toMap(e -> e, e -> 1, Integer::sum)) // 获得元素出现频率的 Map,键为元素,值为元素出现的次数 .entrySet() .stream() // 所有 entry 对应的 Stream .filter(e -> e.getValue() > 1) // 过滤出元素出现次数大于 1 (重复元素)的 entry .map(Map.Entry::getKey) // 获得 entry 的键(重复元素)对应的 Stream .collect(Collectors.toList()); System.out.println(collect);
2.String集合:
//单独String集合 List<String> list = Arrays.asList("a","b","a","c","d","b"); List<String> collect = list.stream().filter(i -> i != "") // list 对应的 Stream 并过滤"" .collect(Collectors.toMap(e -> e, e -> 1, Integer::sum)) // 获得元素出现频率的 Map,键为元素,值为元素出现的次数 .entrySet() .stream() // 所有 entry 对应的 Stream .filter(e -> e.getValue() > 1) // 过滤出元素出现次数大于 1 (重复元素)的 entry .map(Map.Entry::getKey) // 获得 entry 的键(重复元素)对应的 Stream .collect(Collectors.toList()); System.out.println(collect);
标签:stream,Stream,collect,重复,元素,list,获取,集合,entry From: https://www.cnblogs.com/lboke/p/17191212.html