想象一下,我们有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.
解决方法:
不太确定为什么人们没有对此做出回答,但是正如评论中指出的那样,您可以采用以下两种方法
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;
标签:java-stream,java
来源: https://codeday.me/bug/20191108/2008982.html