New additional fields in java.lang.Thread, what is the idea?
问题 In Java 8, java.lang.Thread class got 3 new fields: /** The current seed for a ThreadLocalRandom */ @sun.misc.Contended("tlr") long threadLocalRandomSeed; /** Probe hash value; nonzero if threadLocalRandomSeed initialized */ @sun.misc.Contended("tlr") int threadLocalRandomProbe; /** Secondary seed isolated from public ThreadLocalRandom sequence */ @sun.misc.Contended("tlr") int threadLocalRandomSecondarySeed; as it said in Javadoc for being exclusively managed by class java.util.concurrent