扫码一下
查看教程更方便
random() 方法用于生成 0.0 到 1.0 之间的随机数。 范围是:0.0 =< Math.random < 1.0。 通过使用算术运算可以实现不同的范围。
static double random()
无
该方法返回 double 值。
public class Main { public static void main(String args[]) { System.out.println( Math.random() ); System.out.println( Math.random() ); } }
上面示例编译运行结果如下
0.16763945061451657
0.400551253762343