Java Streams - IntStream parallel() example








IntStream parallel() returns a parallel IntStream.

Syntax

parallel has the following syntax.

IntStream parallel()

Example

The following example shows how to use parallel.

import java.util.stream.IntStream;

public class Main {
  public static void main(String[] args) {
    IntStream i = IntStream.of(6,5,7,1, 2, 3, 3);
    i.parallel().sorted().forEach(System.out::println);
    
  }
}

The code above generates the following result.