Java 随机数比较和分析
作者:网络转载 发布时间:[ 2012/8/2 10:36:39 ] 推荐标签:
public class RandomTest{
static Random random = new Random();
static int r1(int n) {
return (int)(Math.random() * n);
}
static int r2(int n) {
return random.nextInt(n);
}
public static void main(String[] args) {
long t1 = System.nanoTime();
for (int i=0;i<10000;i++) {
r1(1024);
}
long t2 = System.nanoTime();
System.out.println(t2 - t1);
t1 = System.nanoTime();
for (int i=0;i<10000;i++) {
r2(1024);
}
t2 = System.nanoTime();
System.out.println(t2 - t1);
}
}
结果:
3422502
1335365
结论:无论从准确性和效率,nextInt(n)都比Math.random()要好。
三、安全性
Random类的next(n)方法依靠确定的seed种子来计算nextseed的值(seed位48位的bit),尽管使用了各种运算,但结果仍然是线性可预测的。
protected int next(int bits) {
long oldseed, nextseed;
AtomicLong seed = this.seed;
do {
oldseed = seed.get();
nextseed = (oldseed * multiplier + addend) & mask;
} while (!seed.compareAndSet(oldseed, nextseed));
return (int)(nextseed >>> (48 - bits));
}
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11