java8流式编程常用总结

3 篇文章 0 订阅

1.根据某个字段排序

List<Student> newList = list.stream().sorted(Comparator.comparing(Student::getName)).collect(Collectors.toList());

2.根据某个字段求和

int sum = list.stream().mapToInt(Student::getAge).sum();
        // 求最大年龄
        Integer integer = list.stream().map(Users::getAge).max(Integer::compareTo).get();
        System.out.println(integer);
        // 得到最大年龄对象
        Users users = list.stream().max(Comparator.comparingInt(Users::getAge)).get();
        System.out.println(users);
        // 求平均年龄
        System.out.println(list.stream().mapToInt(Users::getAge).average().getAsDouble());
        // 求最大年龄
        System.out.println(list.stream().mapToInt(Users::getAge).max().getAsInt());

3.list去重

List<String> collect = numList.stream().distinct().collect(Collectors.toList());

4.合并多个list为一个list

List<Student> students = Stream.of(student1, student2).flatMap(Collection::stream).collect(Collectors.toList());
           

 

 

4java 8 常用方法总结_itfallrain的博客-CSDN博客_java8

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值