1. 程式人生 > >random.nextInt()的用法

random.nextInt()的用法

例如 負數 ret return urn ram bsp pre ati

1、不帶參數的nextInt()會生成所有有效的整數(包含正數,負數,0)

2、帶參的nextInt(int x)則會生成一個範圍在0~x(不包含X)內的任意正整數

  例如:int x=new Random.nextInt(100);

    則x為一個0~99的任意整數

3、生成一個指定範圍內的整數

     /*
     * 生成[min, max]之間的隨機整數
     * @param min 最小整數
     * @param max 最大整數
     */
    private static int randomInt(int min, int max){
        return new Random().nextInt(max)%(max-min+1) + min;
    }
例如:調用方法randomInt(10,20);則會生成一個[10,20]集合內的任意整數

random.nextInt()的用法