Generates a uniformly distributed 64-bit integer value from the random number sequence. @return 64-bit random integer. @see java.lang.Integer#MAX_VALUE @see java.lang.Integer#MIN_VALUE @see #next @see #nextInt() @see #nextInt(int)
()
| 233 | * @see #nextInt(int) |
| 234 | */ |
| 235 | public long nextLong() { |
| 236 | return ((long) next(32) << 32) + next(32); |
| 237 | } |
| 238 | |
| 239 | /** |
| 240 | * Modifies the seed a using linear congruential formula presented in <i>The |