码迷,mamicode.com
首页 > 编程语言 > 详细

java Random类生成随机数

时间:2019-12-14 10:06:36      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:code   tin   dom   nbsp   封装   max   随机   ati   min   

 

封装一个方法:

 

import java.util.Random;

public class RandomUtil {
    /**
     * nextInt(num) 产生[0 ~ (num-1)]的随机数, 闭区间
     * @param Min
     * @param Max
     * @return
     */
    public static int getRandomInt(int Min , int Max){
        Random rand = new Random();
        return rand.nextInt(Max - Min + 1) + Min;
    }
}

java Random类生成随机数

标签:code   tin   dom   nbsp   封装   max   随机   ati   min   

原文地址:https://www.cnblogs.com/chenmz1995/p/12038132.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!