Java API Tutorial - Java Random() Constructor








Syntax

Random() constructor from Random has the following syntax.

public Random()

Example

In the following code shows how to use Random.Random() constructor.

/*from   w  w  w .j  a v a  2s  . c o m*/
import java.util.Random;

public class Main {
   public static void main( String args[] ){

      Random randomno = new Random();
      
      // get next next pseudorandom value 
      int value = randomno.nextInt();
      
      // check the value  
      System.out.println("Value is: " + value);
   }  
}

The code above generates the following result.