DoubleStream forEach(DoubleConsumer action) example
Description
DoubleStream forEach(DoubleConsumer action)
performs
an action for each element of this stream.
Syntax
forEach
has the following syntax.
void forEach(DoubleConsumer action)
Example
The following example shows how to use forEach
.
import java.util.stream.DoubleStream;
//from w ww . j a v a 2s . c o m
public class Main {
public static void main(String[] args) {
DoubleStream d = DoubleStream.of(1.2,2.3,4.5);
d.forEach(System.out::println);
}
}
The code above generates the following result.