java 生成特定范圍內的隨機數


 

/**
* 生成[1, max]之間的隨機數
*/
public static Integer getRandomNumber(Integer max) {
    Random rd = new Random();
    return rd.nextInt(max) + 1;
}

  

/**
* 生成[x, y]之間的隨機數
 * @return [x, y]之間的隨機數
 */
public static Integer getRandomNumber2() {
    Integer min = 200;
    Integer max = 500;

    Random random = new  Random();

    /**
     * random.nextInt(max) % (max-min+1)  ->  [0, 499] % 301 == [0, 300]
     * [0, 300] + 200 = [200, 500]
     */
    int result = random.nextInt(max) % (max-min+1) + min;
    return result;
}

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM