Uses of Class
java.util.Random
-
Packages that use Random 软件包 描述 java.math 提供执行任意精度整数运算(BigInteger
)和任意精度十进制运算(BigDecimal
)的类。java.security 提供安全框架的类和接口。java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.concurrent 实用程序类通常用于并发编程。javafx.collections 包含基本的JavaFX集合和集合实用程序 -
-
Uses of Random in java.math
Methods in java.math with parameters of type Random Modifier and Type 方法 描述 static BigInteger
BigInteger. probablePrime(int bitLength, Random rnd)
返回一个正的BigInteger,它可能是素数,具有指定的位长度。Constructors in java.math with parameters of type Random Constructor 描述 BigInteger(int bitLength, int certainty, Random rnd)
构造一个随机生成的正BigInteger,它可能是素数,具有指定的bitLength。BigInteger(int numBits, Random rnd)
构造一个随机生成的BigInteger,均匀分布在0到(2numBits
- 1)的范围内。 -
Uses of Random in java.security
Subclasses of Random in java.security Modifier and Type Class 描述 class
SecureRandom
这个类提供了一个密码强的随机数生成器(RNG)。 -
Uses of Random in java.util
Methods in java.util with parameters of type Random Modifier and Type 方法 描述 static void
Collections. shuffle(List<?> list, Random rnd)
使用指定的随机源随机排列指定的列表。 -
Uses of Random in java.util.concurrent
Subclasses of Random in java.util.concurrent Modifier and Type Class 描述 class
ThreadLocalRandom
与当前线程隔离的随机数生成器。 -
Uses of Random in javafx.collections
Methods in javafx.collections with parameters of type Random Modifier and Type 方法 描述 static void
FXCollections. shuffle(ObservableList list, Random rnd)
随机播放可观察列表中的所有元素。
-