你是说Random这个类么?这个random方法是什么意思
math.Random随机选[0,1)
@zk1:
调用过程如下
Math.rdndom()
== >
public static double random() {
Random rnd = randomNumberGenerator; //这里是Random 随机类
if (rnd == null) rnd = initRNG(); //如果Random随机类为null,则创建一个
return rnd.nextDouble();
}
===〉然后调用的就是Random.nextDouble()
public double nextDouble() {
return (((long)(next(26)) << 27) + next(27))
/ (double)(1L << 53);
}
===〉end
@蜀黎peng: 多谢