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

标签 java random random-seed

根据我的研究,每个人似乎都说 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/

相关文章:

java - 生成 10 个随机整数,将它们存储在一个数组中,然后调用一个方法来显示该数组

python - 随机产生一个敌人

random - 为 64 位 LCG 找到更多独立的种子值(MMIX(由 Knuth))

java - Jersey 隐藏了 Spring 框架和 SockJS

java - 我们可以使用 Eclipse 重构以下场景吗?

java-如何生成6位随机十六进制值

python - 从给定的系列中获取 python 中的随机模块种子?

java - android listview setadapter崩溃

java - 正确缩放 BigDecimal

python - python中根据一段时间生成一些 "random"开始时间供脚本运行