Returns the next pseudo-random long value using the specified random number object.
Syntax
nextLong( random )
random.nextLong( )
Parameters
random
|
the random object to use.
|
Returns
long
|
the next pseudo-random long integer value.
|
Example
rnd = Random( )
lValue = rnd.nextLong( )
|