사용자 도구

사이트 도구


java:random

java Random

주의

  • java.util.Raandom은 Thread Safe 하다.
  • 하지만 대신 공유해서 사용할 경우 synchronized로 인해 성능이 매우 떨어진다.
  • 가급적 java.util.concurrent.ThreadLocalRandom 을 사용한다.
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/random.txt · 마지막으로 수정됨: 2024/05/03 08:40 저자 kwon37xi