并发使用java.util.Random的争用

前端之家收集整理的这篇文章主要介绍了并发使用java.util.Random的争用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Oracle Java documentation说:

Instances of java.util.Random are threadsafe. However,the concurrent use of the same java.util.Random instance across threads may encounter contention and consequent poor performance. Consider instead using ThreadLocalRandom in multithreaded designs.

可能是糟糕表现的原因?

解决方法

在内部,java.util.Random保持AtomicLong与当前的种子,并且每当请求一个新的随机数时,争用更新种子.

从java.util.Random的实现:

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));
}

另一方面,ThreadLocalRandom通过每个线程有一个种子来确保种子更新而不面对任何争用.

原文链接:https://www.f2er.com/java/122966.html

猜你在找的Java相关文章