forked from BruceEckel/OnJava8-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrime.java
More file actions
33 lines (32 loc) · 1023 Bytes
/
Prime.java
File metadata and controls
33 lines (32 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// threads/Prime.java
// (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
import java.util.*;
import java.util.stream.*;
import static java.util.stream.LongStream.*;
import java.io.*;
import java.nio.file.*;
import java.nio.charset.*;
public class Prime {
static final int COUNT = 100_000;
public static boolean isPrime(long n) {
return rangeClosed(2, (long)Math.sqrt(n))
.noneMatch(i -> n % i == 0);
}
public static void main(String[] args)
throws IOException {
long start = System.currentTimeMillis();
List<String> primes =
iterate(2, i -> i + 1)
.parallel() //(1)
.filter(Prime::isPrime)
.limit(COUNT)
.mapToObj(Long::toString)
.collect(Collectors.toList());
System.out.println(
System.currentTimeMillis() - start);
Files.write(Paths.get("primes.txt"), primes,
StandardOpenOption.CREATE);
}
}