gpt4 book ai didi

java - java Random() 如何找到种子?

转载 作者:行者123 更新时间:2023-12-01 14:07:49 31 4
gpt4 key购买 nike

根据我的研究,每个人似乎都说 java random 在未指定时使用系统时间(以毫秒为单位)作为其默认种子。因此,如果我们在生成随机数的那一刻有系统时间,那么我们应该能够知道生成该数字的种子是什么。所以,

(new Random()).nextLong;
long time = System.currentTimeMillis();
(new Random(time)).nextLong

应该产生两个相同的数字,因为种子是相同的,对吧?它没有使用 TimeMillis 作为种子,或者我做错了其他事情。

非常感谢您的帮助,我已经搜索了几个小时,但似乎找不到一致的答案。我只想知道当没有指定种子时它是如何找到种子的。我的想法可能是它确实使用了系统时间,但在最终种子之前它会乘以它等。

再次感谢:)

最佳答案

Java 过去使用系统时间作为默认种子,直到 1.4.2。在 1.5 中,这个“错误”得到了修复。比较 1.4.2 API specification :

Creates a new random number generator. Its seed is initialized to a value based on the current time:

public Random() { this(System.currentTimeMillis()); }

Two Random objects created within the same millisecond will have the same sequence of random numbers.

使用 1.5 API specification :

Creates a new random number generator. This constructor sets the seed of the random number generator to a value very likely to be distinct from any other invocation of this constructor.

OpenJDK 中的当前实现使用静态 AtomicLong,每次您创建一个没有种子的新 Random 实例时都会更新它。如果本地没有源代码,可以在 source code on github 中找到:

    public Random() {
this(seedUniquifier() ^ System.nanoTime());
}

private static long seedUniquifier() {
// L'Ecuyer, "Tables of Linear Congruential Generators of
// Different Sizes and Good Lattice Structure", 1999
for (;;) {
long current = seedUniquifier.get();
long next = current * 1181783497276652981L;
if (seedUniquifier.compareAndSet(current, next))
return next;
}
}

private static final AtomicLong seedUniquifier
= new AtomicLong(8682522807148012L);

关于java - java Random() 如何找到种子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62919895/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com