Generates a uniformly distributed 32-bit int value from the random number sequence. @return a uniformly distributed int value. @see java.lang.Integer#MAX_VALUE @see java.lang.Integer#MIN_VALUE @see #next @see #nextLong
()
| 195 | * @see #nextLong |
| 196 | */ |
| 197 | public int nextInt() { |
| 198 | return next(32); |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * Returns a new pseudo-random {@code int} value which is uniformly distributed |
no test coverage detected