假设我们有3个对象的列表,其中分钟字段为值:5、5、7、8
int sumOfFields = found.stream()
.filter(abc -> minutesLessThan5(abc.getMinutes())))
.mapToInt(abc::getMinutes)
.sum();
// will return 10
但是如何更改我的输出 例如而不是getMinutes我想返回自己的值,例如40
int sumOfFields = found.stream()
.filter(abc -> minutesLessThan5(abc.getMinutes())))
.mapToInt(abc ->abc.getMinutes() = 40) //this is pseudo code what I try to achive
.sum();
// output should be 80.
答案 0 :(得分:3)
不太确定为什么人们没有对此做出回答,但是正如评论中指出的那样,您可以采用其中一种方法
int sumOfFields = found.stream()
.filter(abc -> minutesLessThan5(abc.getMinutes())))
.mapToInt(abc -> 40) // map value to be returned as 40
.sum();
或者相反,因为您要用常数40
替换所有这些值,所以您也可以使用count()
并将其乘以常数。
int sumOfFields = (int) found.stream() // casting from long to int
.filter(abc -> minutesLessThan5(abc.getMinutes())))
.count() * 40;