Stream流常用语法及实际问题汇总

文章介绍了JavaStreamAPI的使用,包括使用groupingBy进行数据分组,anyMatch方法进行条件匹配,以及对Map和List的排序操作。示例展示了如何对Map的key进行分组并排序value,按对象属性排序List,以及提取并过滤重复值。
摘要由CSDN通过智能技术生成

一、Stream语法

1、分组groupingBy

SysDictData dictData = new SysDictData();
dictData.setStatus("0");
Map<String, List<SysDictData>> dictDataMap = dictDataMapper.selectDictDataList(dictData).stream().collect(Collectors.groupingBy(SysDictData::getDictType));

2、任意匹配anyMatch

  • anyMatch(任意匹配)是一个常用的函数,用于检查集合中是否存在至少一个满足指定条件的元素。它接受一个谓词作为参数,并返回一个布尔值,表示集合中是否存在满足该谓词的元素。
  • 例如,在Java中,可以使用Stream的anyMatch函数来检查一个整数集合中是否存在大于10的元素。代码示例如下:
    List<Integer> numbers = Arrays.asList(5, 8, 12, 3, 9);
    boolean hasNumberGreaterThanTen = numbers.stream().anyMatch(num -> num > 10);
    
    if (hasNumberGreaterThanTen) {
        System.out.println("集合中存在大于10的元素");
    } else {
        System.out.println("集合中不存在大于10的元素");
    }
    

上述代码中,anyMatch函数使用lambda表达式 num -> num > 10 作为谓词,检查集合中是否存在大于10的元素。如果存在,则输出 “集合中存在大于10的元素”,否则输出 “集合中不存在大于10的元素”。

二、实际问题汇总

1. 分组

1.1 对Map的key进行分组同时对value进行排序

为什么需要对key进行分组,因为使用的是IdentityHashMap

Map<String, LocalDate> map1 = new IdentityHashMap<>();
// 对key分组
Map<String, List<LocalDate>> groupedMap1 = map1.entrySet().stream()
        .collect(Collectors.groupingBy(Map.Entry::getKey, Collectors.mapping(Map.Entry::getValue, Collectors.toList())));
// 排序
groupedMap1.forEach((key, value) -> value.sort(Comparator.naturalOrder()));
//打印
groupedMap1.forEach((key, value) -> System.out.println(key + ": " + value));

1.2 分组时指定key和value

// 指定自定义的值类型
Map<Integer, Set<String>> ageToUniqueNames = people.stream()
        .collect(Collectors.groupingBy(
                Person::getAge,
                Collectors.mapping(Person::getName, Collectors.toSet())
        ));

2. 排序

2.1 在List中根据对象的LocalDate属性进行排序

List<对象> planList = List集合对象.stream()
        .sorted((Comparator.comparing(RepaymentPlan::getExpectRepayDate)))
        .collect(Collectors.toList());

3. 其余场景

3.1 将list中对象的某属性重复的这个值提取出来,并返回一个list

// 使用groupingBy按planId分组,并计算每个组的数量
Map<Long, Long> planIdCountMap = repaymentRecords.stream()
        .collect(Collectors.groupingBy(RepaymentRecord::getPlanId, Collectors.counting()));

// 过滤出数量大于1的组,即重复的planId
List<Long> duplicatePlanIds = planIdCountMap.entrySet().stream()
        .filter(entry -> entry.getValue() > 1)
        .map(Map.Entry::getKey)
        .collect(Collectors.toList());
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值