Java random() 方法
random() 方法用于返回一個(gè)隨機(jī)數(shù),隨機(jī)數(shù)范圍為 0.0 =< Math.random < 1.0。
語(yǔ)法
static double random()
參數(shù)
這是一個(gè)默認(rèn)方法,不接受任何參數(shù)。
返回值
該方法返回 double 值。
實(shí)例
public class Test{ public static void main(String args[]){ System.out.println( Math.random() ); System.out.println( Math.random() ); } }
編譯以上程序,輸出結(jié)果為:
0.5444085967267008 0.7960235983184115
更多建議: