Here you can find the source of randInt(int min, int max)
Parameter | Description |
---|---|
min | Minimum value |
max | Maximum value. Must be greater than min. |
public static int randInt(int min, int max)
//package com.java2s; //License from project: Open Source License import java.util.Random; public class Main { private static Random rand = new Random(); /**/*from ww w. j ava 2 s.co m*/ * Returns a pseudo-random number between min and max, inclusive. * The difference between min and max can be at most * <code>Integer.MAX_VALUE - 1</code>. * * @param min Minimum value * @param max Maximum value. Must be greater than min. * @return Integer between min and max, inclusive. * @see java.util.Random#nextInt(int) */ public static int randInt(int min, int max) { // Usually this can be a field rather than a method variable //Random rand = new Random(); rand.setSeed(System.currentTimeMillis()); // nextInt is normally exclusive of the top value, // so add 1 to make it inclusive int randomNum = rand.nextInt((max - min) + 1) + min; return randomNum; } }