new Random().nextXxx();
new Random().nextXxx(10);
new Random().ints(0, Integer.MAX_VALUE)
.distinct()
.limit(10)
.boxed()
.collect(Collectors.toList())
--Liste Zufallszahlenerfassung
list.get(random.nextInt(list.size()));
Recommended Posts