欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java生成随机数的方法

程序员文章站 2024-02-27 13:54:03
1、通过system.currenttimemillis()来获取一个当前时间毫秒数的long型数字。   long a = system.currenttime...

1、通过system.currenttimemillis()来获取一个当前时间毫秒数的long型数字。

  long a = system.currenttimemillis();
  system.out.println(a);

2、通过math.random()返回一个0到1之间的double值。

  int b = (int)(math.random()*99+1);
  system.out.println(b);

3、通过random类来产生一个随机数。

  random random = new random();
  int c = random.nextint(100)+1;
  system.out.println(c);

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!