Java Basics
Java Object Oriented
Java Advanced
Java Useful References
Java Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Java - random() Method
Description:
The method is used o generate a random number between 0.0 and 1.0. The range is: 0.0 =< Math.random < 1.0. Different ranges can be achieved by using arithmetic.
Syntax:
Parameters:
Here is the detail of parameters:
Return Value :
Example:
public class Test{
public static void main(String args[]){
System.out.println( Math.random() );
System.out.println( Math.random() );
}
}
|
This produces following result:
0.16763945061451657
0.400551253762343
|
Note: Above result would vary every time you would call random() method.
|
|
|