Java random() 方法
Java random() 方法
random() 方法用來傳回一個隨機數,隨機數範圍為 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.5444085967267008 0.7960235983184115