IntStream parallel() example
Description
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;
/* ww w . j a v a2 s . c o m*/
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.