IntStream average()
returns an OptionalDouble
describing the arithmetic mean of elements of this stream, or an empty optional if this stream is empty.
average
has the following syntax.
OptionalDouble average()
The following example shows how to use average
.
import java.util.OptionalDouble; import java.util.stream.IntStream; /*from w w w. j a va 2 s. c o m*/ public class Main { public static void main(String[] args) { IntStream i = IntStream.of(6,5,7,1, 2, 3, 3); OptionalDouble d = i.average(); if(d.isPresent()){ System.out.println(d.getAsDouble()); }else{ System.out.println("no value"); } } }
The code above generates the following result.