首頁 >Java >java教程 >java如何使用Math.random()產生隨機數

java如何使用Math.random()產生隨機數

WBOY
WBOY轉載
2023-05-11 15:40:121227瀏覽

使用Math.random()產生隨機數字

直接貼幾個小方法

/**
* 获取0.0-1.0之间的随机小数
*/
private double test1() {
    double num = Math.random();
    return num;
}
/**
* 获取两个数之间的随机小数
*/
private double test2(int min, int max) {
    return min + Math.random() * (max - min);
}
/**
* 获取两个数之间的随机整数
*/
private int test3(int min, int max) {
    return (int) (min + Math.random() * (max - min));
}

以上是java如何使用Math.random()產生隨機數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除