plxx

随机数产生的三种方法:

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);
    }
}

 

 

 

分类:

技术点:

相关文章:

  • 2022-02-10
  • 2021-07-07
  • 2022-02-23
  • 2021-06-22
  • 2022-02-17
  • 2022-01-14
  • 2021-12-27
猜你喜欢
  • 2022-02-28
  • 2022-12-23
  • 2021-11-28
  • 2022-02-09
  • 2022-12-23
相关资源
相似解决方案