Java random()方法

2019-10-16 22:23:18

Java random()方法用於生成介於0.01.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