在 Java 中生成随机数
使用三种方式可以在 Java 中生成随机数。
使用 java.util.Random 类 − 可以使用 Random 类对象使用 nextInt()、nextDouble() 等方法生成随机数。
使用 java.lang.Math 类 − Math.random() 方法在每次调用时返回一个随机双精度数。
使用 java.util.concurrent.ThreadLocalRandom 类 − ThreadLocalRandom.current().nextInt() 方法及类似的其他方法在每次调用时返回一个随机数。
例子
import java.util.Random; import java.util.concurrent.ThreadLocalRandom; public class Tester { public static void main(String[] args) { generateUsingRandom(); generateUsingMathRandom(); generateUsingThreadLocalRandom(); } private static void generateUsingRandom() { Random random = new Random(); //print a random int within range of 0 to 10. System.out.println(random.nextInt(10)); //print a random int System.out.println(random.nextInt()); //print a random double System.out.println(random.nextDouble()); } private static void generateUsingMathRandom() { //print a random double System.out.println(Math.random()); } private static void generateUsingThreadLocalRandom() { //print a random int within range of 0 to 10. System.out.println(ThreadLocalRandom.current().nextInt(10)); //print a random int System.out.println(ThreadLocalRandom.current().nextInt()); //print a random double System.out.println(ThreadLocalRandom.current().nextDouble()); } }
输出
9 -1997411886 0.7272728969835154 0.9400193333973254 6 852518482 0.13628495782770622
广告