java.util.concurrent.ThreadLocalRandom
是从jdk 1.7
开始引入的实用程序类,当需要多个线程或ForkJoinTasks
来生成随机数时很有用。 它提高了性能,并且比Math.random()
方法占用更少的资源。
以下是ThreadLocalRandom
类中可用的重要方法的列表。
编号 | 方法 | 说明 |
---|---|---|
1 | public static ThreadLocalRandom current() |
返回当前线程的ThreadLocalRandom 。 |
2 | protected int next(int bits) |
生成下一个伪随机数。 |
3 | public double nextDouble(double n) |
返回伪随机,均匀分布在0(含)和指定值(独占)之间的double 值。 |
4 | public double nextDouble(double least, double bound) |
返回在给定的least 值(包括)和bound (不包括)之间的伪随机均匀分布的值。 |
5 | public int nextInt(int least, int bound) |
返回在给定的least 值(包括)和bound (不包括)之间的伪随机均匀分布的整数值。 |
6 | public long nextLong(long n) |
返回伪随机均匀分布的值在0(含)和指定值(不包括)之间的长整数值。 |
7 | public long nextLong(long least, long bound) |
返回在给定的最小值(包括)和bound (不包括)之间的伪随机均匀分布的长整数值。 |
8 | public void setSeed(long seed) |
设置伪随机的种子值,抛出UnsupportedOperationException 异常。 |
以下TestThread
程序演示了Lock
接口的一些方法。 这里我们使用lock()
获取锁和unlock()
来释放锁。
import java.util.Random; import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; import java.util.concurrent.ThreadLocalRandom; public class TestThread { public static void main(final String[] arguments) { System.out.println("Random Integer: " + new Random().nextInt()); System.out.println("Seeded Random Integer: " + new Random(15).nextInt()); System.out.println("Thread Local Random Integer: " + ThreadLocalRandom.current().nextInt()); final ThreadLocalRandom random = ThreadLocalRandom.current(); random.setSeed(15); //exception will come as seeding is not allowed in ThreadLocalRandom. System.out.println( "Seeded Thread Local Random Integer: " + random.nextInt()); } }
执行上面代码,将产生以下结果 -
Random Integer: 694316820 Seeded Random Integer: -1159716814 Exception in thread "main" Thread Local Random Integer: -1324834819 java.lang.UnsupportedOperationException at java.util.concurrent.ThreadLocalRandom.setSeed(ThreadLocalRandom.java:236) at com.zyiz.TestThread.main(TestThread.java:18)