溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java如何實現(xiàn)獲取不同隨機數(shù)?

發(fā)布時間:2020-05-23 14:53:33 來源:億速云 閱讀:258 作者:鴿子 欄目:編程語言

三種生成方式:

1、通過System.currentTimeMillis()來獲取一個當前時間毫秒數(shù)的long型數(shù)字。

2、通過Math.random()返回一個0到1之間的double值。

3、通過Random類來產(chǎn)生一個隨機數(shù),這個是專業(yè)的Random工具類,功能強大。

第一種:

通過System.currentTimeMillis()來獲取隨機數(shù)。實際上是獲取當前時間毫秒數(shù),它是long類型。使用方法如下:

final long l = System.currentTimeMillis();

若要獲取int類型的整數(shù),只需要將上面的結(jié)果轉(zhuǎn)行成int類型即可。比如,獲取[0, 100)之間的int整數(shù)。方法如下:

final long l = System.currentTimeMillis();
final int i = (int)( l % 100 );

第二種:

通過Math.random()來獲取隨機數(shù)。實際上,它返回的是0(包含)到1(不包含)之間的double值。使用方法如下:

final double d = Math.random();

若要獲取int類型的整數(shù),只需要將上面的結(jié)果轉(zhuǎn)行成int類型即可。比如,獲取[0, 100)之間的int整數(shù)。方法如下:

final double d = Math.random();
final int i = (int)(d*100);

第三種:

通過Random類來獲取隨機數(shù)。使用方法如下:

1、創(chuàng)建Random對象。有兩種方法可以創(chuàng)建Random對象,如下:

Random random = new Random();//默認構(gòu)造方法
Random random = new Random(1000);//指定種子數(shù)字

(02) 通過Random對象獲取隨機數(shù)。Random支持的隨機值類型包括:boolean, byte, int, long, float, double。

比如,獲取[0, 100)之間的int整數(shù)。方法如下:

int i2 = random.nextInt(100);

代碼示例:

 1 import java.util.Random;
 2 import java.lang.Math;
 3 
 4 /**
 5  * java 的隨機數(shù)測試程序。共3種獲取隨機數(shù)的方法:
 6  *   (01)、通過System.currentTimeMillis()來獲取一個當前時間毫秒數(shù)的long型數(shù)字。
 7  *   (02)、通過Math.random()返回一個0到1之間的double值。
 8  *   (03)、通過Random類來產(chǎn)生一個隨機數(shù),這個是專業(yè)的Random工具類,功能強大。
 9  *
10  * @author skywang
11  * @email kuiwu-wang@163.com
12  */
13 public class RandomTest{
14 
15     public static void main(String args[]){
16 
17         // 通過System的currentTimeMillis()返回隨機數(shù)
18         testSystemTimeMillis();
19 
20         // 通過Math的random()返回隨機數(shù)
21         testMathRandom();
22 
23         // 新建“種子為1000”的Random對象,并通過該種子去測試Random的API
24         testRandomAPIs(new Random(1000), " 1st Random(1000)");
25         testRandomAPIs(new Random(1000), " 2nd Random(1000)");
26         // 新建“默認種子”的Random對象,并通過該種子去測試Random的API
27         testRandomAPIs(new Random(), " 1st Random()");
28         testRandomAPIs(new Random(), " 2nd Random()");
29     }
30 
31     /**
32      * 返回隨機數(shù)-01:測試System的currentTimeMillis()
33      */
34     private static void testSystemTimeMillis() {
35         // 通過
36         final long l = System.currentTimeMillis();
37         // 通過l獲取一個[0, 100)之間的整數(shù)
38         final int i = (int)( l % 100 );
39 
40         System.out.printf("\n---- System.currentTimeMillis() ----\n l=%s i=%s\n", l, i);
41     }
42 
43 
44     /**
45      * 返回隨機數(shù)-02:測試Math的random()
46      */
47     private static void testMathRandom() {
48         // 通過Math的random()函數(shù)返回一個double類型隨機數(shù),范圍[0.0, 1.0)
49         final double d = Math.random();
50         // 通過d獲取一個[0, 100)之間的整數(shù)
51         final int i = (int)(d*100);
52 
53         System.out.printf("\n---- Math.random() ----\n d=%s i=%s\n", d, i);
54     }
55 
56 
57     /**
58      * 返回隨機數(shù)-03:測試Random的API
59      */
60     private static void testRandomAPIs(Random random, String title) {
61         final int BUFFER_LEN = 5;
62 
63         // 獲取隨機的boolean值
64         boolean b = random.nextBoolean();
65         // 獲取隨機的數(shù)組buf[]
66         byte[] buf = new byte[BUFFER_LEN];
67         random.nextBytes(buf);
68         // 獲取隨機的Double值,范圍[0.0, 1.0)
69         double d = random.nextDouble();
70         // 獲取隨機的float值,范圍[0.0, 1.0)
71         float f = random.nextFloat();
72         // 獲取隨機的int值
73         int i1 = random.nextInt();
74         // 獲取隨機的[0,100)之間的int值
75         int i2 = random.nextInt(100);
76         // 獲取隨機的高斯分布的double值
77         double g = random.nextGaussian();
78         // 獲取隨機的long值
79         long l = random.nextLong();
80 
81         System.out.printf("\n---- %s ----\nb=%s, d=%s, f=%s, i1=%s, i2=%s, g=%s, l=%s, buf=[",
82                 title, b, d, f, i1, i2, g, l);
83         for (byte bt:buf) 
84             System.out.printf("%s, ", bt);
85         System.out.println("]");
86     }
87 }

以上就是java中獲取不同隨機數(shù)的方法的詳細內(nèi)容,更多請關(guān)注億速云其它相關(guān)文章!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI