Java random()方法用於生成介於0.0
和1.0
之間的亂數。 範圍是:0.0 =< Math.random() < 1.0
。 通過使用算術運算可以實現不同的範圍。
語法
static double random()
double
值。public class Test {
public static void main(String args[]) {
System.out.println( Math.random() );
System.out.println( Math.random() );
}
}
執行上面範例程式碼,得到以下結果:
0.16763945061451657
0.400551253762343