当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java IntStream reduce(int identity, IntBinaryOperator op)用法及代码示例


IntStream reduce(int identity,IntBinaryOperator op)使用提供的标识值和关联累加函数对此流的元素执行精简,然后返回精简的值。

归约运算或折叠运算采用一系列输入元素,并将它们组合成单个汇总结果,例如查找一组数字的总和或最大值。如果满足以下条件,则运算符或函数op是关联的:

(a op b) op c == a op (b op c)

这是终端操作,即可能会遍历流以产生结果或副作用。执行终端操作后,流管线被视为已消耗,无法再使用。


用法:

int reduce(int identity,  IntBinaryOperator op)

参数:

  • identity:累加函数的标识值。
  • IntBinaryOperator:对两个具有int值的操作数进行运算并产生int值的结果。
  • op:用于组合两个值的关联无状态函数。

返回值:减少的结果。

范例1:

// Java code for IntStream reduce 
// (int identity, IntBinaryOperator op) 
import java.util.*; 
import java.util.stream.IntStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an IntStream 
        IntStream stream = IntStream.of(2, 3, 4, 5, 6); 
  
        // Using IntStream reduce 
        // (int identity, IntBinaryOperator op) 
        int answer = stream.reduce(0, (num1, num2) 
                                          -> (num1 + num2) * 2); 
  
        // Displaying the result 
        System.out.println(answer); 
    } 
}

输出:

176

范例2:

// Java code for IntStream reduce 
// (int identity, IntBinaryOperator op) 
import java.util.*; 
import java.util.stream.IntStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an IntStream 
        IntStream stream = IntStream.range(4, 10); 
  
        // Using IntStream reduce 
        // (int identity, IntBinaryOperator op) 
        int answer = stream.reduce(0, (num1, num2) 
                                          -> (num1 + num2) - 2 * (num1 - num2)); 
  
        // Displaying the result 
        System.out.println(answer); 
    } 
}

输出:

9


相关用法


注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 IntStream reduce(int identity, IntBinaryOperator op) in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。