The nextGaussian() method of Random class returns the next pseudorandom, uniformly distributed long value from this random number generator’s sequence.
Syntax:
public long nextLong()
Parameters: The function does not accepts any parameter.
Return Value: This method returns the next pseudorandom, uniformly distributed long value.
Exception: The function does not throws any exception.
Program below demonstrates the above mentioned function:
// program to demonstrate the // function java.util.Random.nextLong() import java.util.*; public class GFG { public static void main(String[] args) { // create random object Random r = new Random(); // get next long value and print the value System.out.println( "Long value is = " + r.nextLong()); } } |
Long value is = -9027907281942573746
// program to demonstrate the // function java.util.Random.nextLong() import java.util.*; public class GFG { public static void main(String[] args) { // create random object Random r = new Random(); // get next long value and print the value System.out.println( "Long value is = " + r.nextLong()); } } |
Long value is = -2817123387200223163
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready.