【说站】java Reduce的三种重载
2024-11-09
9
java Reduce的三种重载
1、一个参数的reduce
格式
Optional<T> reduce(BinaryOperator<T> accumulator)
T result = a[0]; for (int i = 1; i < n; i++) { result = accumulator.apply(result, a[i]); } return result;
2、两个参数的reduce
格式
T reduce(T identity, BinaryOperator<T> accumulator)
T result = identity; for (int i = 0; i < n; i++) { result = accumulator.apply(result, a[i]); } return result;
3、三个参数的Reduce,其中get和set方法使用时省略。
格式
<U> U reduce(U identity, BiFunction<U, ? super T, U> accumulator,BinaryOperator<U> combiner);
static class ScoreBean { private String name; //学生姓名 private int score; //分数,需要汇总该字段 public ScoreBean(String name, int score) { this.name = name; this.score = score; } //get 和 set 方法省略 }
以上就是java Reduce的三种重载,希望对大家有所帮助。更多Java学习指路:Java基础
本教程操作环境:windows7系统、java10版,DELL G3电脑。
更新于:3天前赞一波!
相关文章
- 【说站】java通配符有哪些
- 【说站】java SPI的使用场景
- 【说站】java泛型中类型擦除的转换
- 【说站】java重复注解如何实现
- 【说站】java SPI如何定义接口
- 【说站】java中volatile的应用场景
- 【说站】java中HttpClient的错误处理
- 【说站】java泛型是什么意思?
- 【说站】java中有哪些时间API?
- 【说站】java Stream如何操作元素
- 【说站】java中Comparators是什么
- 【说站】java Lambda访问变量
- 【说站】java Match如何使用
- 【说站】java有哪些内置的函数式接口
- 【说站】java接口中静态方法的继承
- 【说站】java Sorted的使用注意点
- 【说站】java虚拟扩展方法如何实现
- 【说站】java数组中元素求和的实例
- 【说站】java数组如何遍历全部的元素
- 【说站】java接口如何使用默认方法
文章评论
评论问答