Returns the next pseudorandom, uniformly distributed {@code int}value from this random number generator's sequence. The general contract of {@code nextInt} is that one {@code int} value ispseudorandomly generated and returned. All 232 possible {@code int} values are produced with(approximately) equal probability.
The method {@code nextInt} is implemented by class {@code Random}as if by:
{@code}public int nextInt() return next(32); }}
@return the next pseudorandom, uniformly distributed {@code int}value from this random number generator's sequence
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.