Java Streams - DoubleStream parallel() example








DoubleStream parallel() returns a parallel Stream.

Syntax

parallel has the following syntax.

DoubleStream parallel()

Example

The following example shows how to use parallel.

import java.util.stream.DoubleStream;

public class Main {
  public static void main(String[] args) {
    DoubleStream b = DoubleStream.of(1.1,2.2,3.3,4.4,5.5);
    b.parallel().forEach(System.out::println);
  }
}

The code above generates the following result.