IntStream reduce(IntBinaryOperator op) example

Description

IntStream reduce(IntBinaryOperator op) performs a reduction on the elements of this stream, using an associative accumulation function, and returns an OptionalInt describing the reduced value, if any.

Syntax

reduce has the following syntax.


OptionalInt reduce(IntBinaryOperator op)

Example

The following example shows how to use reduce.


import java.util.OptionalInt;
import java.util.stream.IntStream;
/* w ww.j a  v a  2 s  . co m*/
public class Main {
  public static void main(String[] args) {
    IntStream i = IntStream.of(6,5,7,1, 2, 3, 3);
    OptionalInt v = i.reduce(Integer::sum);
    if(v.isPresent()){
      System.out.println(v.getAsInt());  
    }else{
      System.out.println(v);
    }
    
  }
}

The code above generates the following result.





















Home »
  Java Streams »
    Reference »




Collectors
DoubleStream
DoubleStream.Builder
IntStream
IntStream.Builder
LongStream
LongStream.Builder
Stream
Stream.Builder