LongStream parallel() example
Description
LongStream parallel()
returns the LongStream in parallel.
Syntax
parallel
has the following syntax.
LongStream parallel()
Example
The following example shows how to use parallel
.
import java.util.stream.LongStream;
/*from w w w. j a v a2 s.com*/
public class Main {
public static void main(String[] args) {
LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE);
b.parallel().forEach(System.out::println);
}
}
The code above generates the following result.