Java8特性:分组、提取字段、去重、过滤、差集、交集

总结下自己使用过的特性

  • 将对象集合根据某个字段分组
java 复制代码
//根据id分组
Map<String, List<Bean>> newMap = successCf.stream().collect(Collectors.groupingBy(b -> b.getId().trim()));
  • 获取对象集合里面的某个字段的集合
java 复制代码
List<Bean> list = new ArrayList<>(); 
List<String> strList = list.stream().map(Bean::getId).collect(Collectors.toList());
  • 將集合字段转换成字符串
java 复制代码
List<Long> longList = new ArrayList<>();
String s = longList.stream().map(Object :: toString).collect(Collectors.joining(","));
  • 提取字段去重distinct
java 复制代码
List<String> strList = list.stream().map(Bean::getId).distinct().collect(Collectors.toList());
  • 提取字段去重set
java 复制代码
Set<String> idSet = list.stream().map(Bean :: getId).collect(Collectors.toSet());
  • 过滤filter
java 复制代码
Map<String, Integer> map = new HashMap<>();
//先分组
Map<String, List<Bean>> maps = list.stream().collect(Collectors.groupingBy(Bean::getname));
//循环获取到大小
houseIdMaps.forEach((s, names) -> {
            //房屋地址对应的条数
            map.put(s, names.size());
});
//过滤
//过滤重复的数据 >1
Map<String, Integer> mapRepeat = map.entrySet().stream().filter(entry -> entry.getValue() > 1).collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
//过滤未重复的数据 =1
Map<String, Integer> mapNoRepeat = map.entrySet().stream().filter(entry -> entry.getValue() == 1).collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
  • 过滤filter,equals
java 复制代码
List<Bean> list1 = list.stream().filter(a -> a.getId().equals("1")).collect(Collectors.toList());
  • 差集(基于java8新特性) 适用于大数据量
java 复制代码
    /**
     * 差集(基于java8新特性) 适用于大数据量
     * 求List1中有的但是List2中没有的元素
     */
    public static List<String> subList(List<String> list1, List<String> list2) {
        Map<String, String> tempMap = list2.parallelStream().collect(Collectors.toMap(Function.identity(), Function.identity(), (oldData, newData) -> newData));
        return list1.parallelStream().filter(str-> !tempMap.containsKey(str)).collect(Collectors.toList());
    }
  • 交集(基于java8新特性) 适用于大数据量
java 复制代码
    /**
     * 交集(基于java8新特性) 适用于大数据量
     * 求List1和List2中都有的元素
     */
    public static List<String> intersectList(List<String> list1, List<String> list2){
        Map<String, String> tempMap = list2.parallelStream().collect(Collectors.toMap(Function.identity(), Function.identity(), (oldData, newData) -> newData));
        return list1.parallelStream().filter(str-> tempMap.containsKey(str)).collect(Collectors.toList());
    }
相关推荐
Yan.love9 分钟前
开发场景中Java 集合的最佳选择
java·数据结构·链表
椰椰椰耶12 分钟前
【文档搜索引擎】搜索模块的完整实现
java·搜索引擎
大G哥12 分钟前
java提高正则处理效率
java·开发语言
智慧老师43 分钟前
Spring基础分析13-Spring Security框架
java·后端·spring
lxyzcm44 分钟前
C++23新特性解析:[[assume]]属性
java·c++·spring boot·c++23
V+zmm101341 小时前
基于微信小程序的乡村政务服务系统springboot+论文源码调试讲解
java·微信小程序·小程序·毕业设计·ssm
Oneforlove_twoforjob2 小时前
【Java基础面试题025】什么是Java的Integer缓存池?
java·开发语言·缓存
xmh-sxh-13142 小时前
常用的缓存技术都有哪些
java
AiFlutter2 小时前
Flutter-底部分享弹窗(showModalBottomSheet)
java·前端·flutter
J不A秃V头A3 小时前
IntelliJ IDEA中设置激活的profile
java·intellij-idea