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