Java Random Int randInt()

Here you can find the source of randInt()

Description

rand int between 0 and max value

License

Open Source License

Declaration

public static final int randInt() 

Method Source Code


//package com.java2s;
/*// w  w w  .  ja  v  a  2  s  .com
 * Copyright (C) 2015 William Matrix Peckham
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

import java.util.Random;

public class Main {
    /**
     * random for random functions.
     */
    public static final Random rand = new Random();

    /**
     * rand int between 0 and max value
     *
     * @return
     */
    public static final int randInt() {
        return rand.nextInt(Integer.MAX_VALUE);
    }

    /**
     * rand int between l=h
     *
     * @param l
     * @param h
     * @return
     */
    public static final int randInt(int l, int h) {
        return (int) (randDouble(l, h));
    }

    /**
     * rand 0-1 double
     *
     * @return
     */
    public static final double randDouble() {
        return (double) randInt() / (double) Integer.MAX_VALUE;
    }

    /**
     * rand double l-h
     *
     * @param l
     * @param h
     * @return
     */
    public static final double randDouble(double l, double h) {
        double randd = randDouble();
        return randd * (h - l) + l;
    }
}

Related

  1. rand(int min, int max)
  2. rand(int size)
  3. randBetween(int min, int max)
  4. randInRangeInc(int min, int max)
  5. randInt()
  6. randInt(int l)
  7. randInt(int low, int high)
  8. randInt(int max)
  9. randint(int max)