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