是否可以为 ThreadLocalRandom 提供种子?

looks like it isn't

/**
 * Throws {@code UnsupportedOperationException}.  Setting seeds in
 * this generator is not supported.
 *
 * @throws UnsupportedOperationException always
 */
public void setSeed(long seed) {
    if (initialized)
        throw new UnsupportedOperationException();
    rnd = (seed ^ multiplier) & mask;
}

那么我们可以使用带种子的ThreadLocalRandom还是不是为此设计的?

最佳答案

正如@Marko Topolnik所说,ThreadLocalRandom不允许设置您自己的种子。
您可以通过使用ThreadLocal<Random>绕过此问题,如this question中所述。

10-07 16:19