EN
Java - generate random boolean with seed (the same random results each time when I create new instance)
3 points
Qucik solution:
xxxxxxxxxx
1
import java.util.Random;
2
3
public class RandomWithSeed {
4
private final Random random;
5
6
public RandomWithSeed(int seed) {
7
this.random = new Random(seed);
8
}
9
10
public boolean nextBoolean() {
11
return random.nextBoolean();
12
}
13
14
// example:
15
public static void main(String[] args) {
16
{
17
RandomWithSeed randomWithSeed = new RandomWithSeed(218756092);
18
19
System.out.println("# First run:");
20
for (int i = 0; i < 5; i++) {
21
System.out.println(randomWithSeed.nextBoolean());
22
}
23
}
24
25
{
26
RandomWithSeed randomWithSeed = new RandomWithSeed(218756092);
27
28
System.out.println("# Second run:");
29
for (int i = 0; i < 5; i++) {
30
System.out.println(randomWithSeed.nextBoolean());
31
}
32
}
33
}
34
}
Output:
xxxxxxxxxx
1
# First run:
2
true
3
false
4
true
5
false
6
true
7
# Second run:
8
true
9
false
10
true
11
false
12
true