java.lang.randint code example

Example 1: java random number generator in range

int rand = ThreadLocalRandom.current().nextInt(x,y);

Example 2: java random.nextint

public class Random {
  
  public static void main(String[] args) {
    
    Random random = new Random(long seed);
    int bound = 5;
    
    System.out.println(random.nextInt(bound));
    
  }
  
}
/*
Returns a pseudorandom, uniformly distributed int value between
0 (inclusive) and
the specified value 5 (exclusive),
drawn from this random number generator's sequence.

Tags:

Java Example