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


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


IntStream reduce(IntBinaryOperator op)使用关联累加函数对此流的元素进行归约,并返回描述归约值的OptionalInt(如果有)。

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

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

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


用法:

OptionalInt reduce(IntBinaryOperator op)

参数:

  • OptionalInt:一个可能包含也可能不包含int值的容器对象。如果存在值,则isPresent()将返回true,而getAsInt()将返回该值。
  • IntBinaryOperator:对两个具有int值的操作数进行运算并产生int值的结果。
  • op:用于组合两个值的关联无状态函数。

返回值:描述减小的值的OptionalInt(如果有)。

范例1:

// Java code for IntStream reduce 
// (IntBinaryOperator op) 
import java.util.OptionalInt; 
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 OptionalInt (a container object which 
        // may or may not contain a non-null value) 
        // Using IntStream reduce(IntBinaryOperator op) 
        OptionalInt answer = stream.reduce(Integer::sum); 
  
        // if the stream is empty, an empty 
        // OptionalInt is returned. 
        if (answer.isPresent()) { 
            System.out.println(answer.getAsInt()); 
        } 
        else { 
            System.out.println("no value"); 
        } 
    } 
}

输出:

20

范例2:

// Java code for IntStream reduce 
// (IntBinaryOperator op) 
import java.util.OptionalInt; 
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 OptionalInt (a container object which 
        // may or may not contain a non-null value) 
        // Using IntStream reduce(IntBinaryOperator op) 
        OptionalInt answer = stream.reduce((a, b) -> (a * b)); 
  
        // if the stream is empty, an empty 
        // OptionalInt is returned. 
        if (answer.isPresent()) { 
            System.out.println(answer.getAsInt()); 
        } 
        else { 
            System.out.println("no value"); 
        } 
    } 
}

输出:

720


相关用法


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