Java中具有一定范围的随机数系列

时间:2016-02-22 21:23:40

标签: java random

在Java中使用Well512随机数生成器类,如何生成0到50范围内的随机数?

1 个答案:

答案 0 :(得分:0)

对于最简单的情况(默认种子,仅一次):

new org.apache.commons.math3.random.Well512a().nextInt(50);

虽然你无疑想要存储该实例并重复使用它。

请参阅:https://commons.apache.org/proper/commons-math/javadocs/api-3.6/org/apache/commons/math3/random/Well512a.html

Well512a实施https://commons.apache.org/proper/commons-math/javadocs/api-3.6/org/apache/commons/math3/random/BitsStreamGenerator.html