首页 > Java > java教程 > java Reduce的重载有哪些

java Reduce的重载有哪些

WBOY
发布: 2023-05-06 11:55:06
转载
1393 人浏览过

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的重载有哪些的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:yisu.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板