java--随机数的产生

随机数产生的三种方法:

1、system.currentTimeMillis()

public class Demo1{

    public static void main(String[] args) {

        System.out.println(System.currentTimeMillis());

    }

}

显示的时间是从1970年1月1日开始到目前的时间的毫秒数;

2、math.random()

将会产生0.0--1.0之间的随机数

API :   java.lang.Math

3、Random()

public class Demo1{

    public static void main(String[] args) {

        double r1 = Math.random();

        System.out.println(r1);

        

        Random r2 = new Random(System.currentTimeMillis());

        Random r3 = new Random(System.currentTimeMillis());

        int res1 = r2.nextInt(10);

        

        int res = r2.nextInt(10);

        System.out.println(res);

        System.out.println(res1);

    }

}

 

 

 

你可能感兴趣的:(java)