Java Streams - DoubleStream forEach(DoubleConsumer action) example








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;

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.