Returns the next pseudo-random double value using the specified random number object.
Syntax
nextDouble( random )
random.nextDouble( )
Parameters
random
|
the random object to use.
|
Returns
double
|
the next pseudo-random double value.
|
Example
rnd = Random( )
dValue = rnd.nextDouble( )
|