Random相同种子产生同一序列_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Random相同种子产生同一序列

Random相同种子产生同一序列

 2015/1/22 4:07:09  whicky  程序员俱乐部  我要评论(0)
  • 摘要:publicvoidtest_shuffff(){List<String>list=Lists.newArrayList("7451880340:10138652","7451880338:10138652","7451862057:10138652","7451862249:10138652","7451862316:10138652");Collections.shuffle(list,newRandom(10));System.out.println(list);
  • 标签:种子
class="java">    public void test_shuffff() {
        List<String> list = Lists.newArrayList( "7451880340:10138652","7451880338:10138652","7451862057:10138652","7451862249:10138652","7451862316:10138652");
        Collections.shuffle(list,new Random(10));
        System.out.println(list);
    }

偶然发现
Collections.shuffle(List,Random)
的时候,多次执行的结果都是一致的,看shuffle的源码里
            // Shuffle array
            for (int i=size; i>1; i--)
                swap(arr, i-1, rnd.nextInt(i));

怎么也应该是随机的啊!
找寻半天才发现,Random类的说明:
If two instances of {@code Random} are created with the same
* seed, and the same sequence of method calls is made for each, they
* will generate and return identical sequences of numbers

也就是说,如果Random实例的种子是一样的,那么同样的方法执行结果都是一样的,举例:
    public static void main(String[] args) {
        Random rd = new Random(10);
        System.out.println(rd.nextInt(1));
        System.out.println(rd.nextInt(3));
        System.out.println(rd.nextInt(4));
        System.out.println(rd.nextInt(8));
    }

执行多次打印结果都是一致的:
引用0
0
1
3
要注意与不指定种子的Random的区别,默认的Random()是以当前系统时间为种子的,每次执行自然就不一样了
发表评论
用户名: 匿名