El método nextGaussian() de la clase Random devuelve el siguiente valor largo pseudoaleatorio, uniformemente distribuido de la secuencia de este generador de números aleatorios.
Sintaxis:
public long nextLong()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: este método devuelve el siguiente valor largo pseudoaleatorio, uniformemente distribuido.
Excepción: la función no lanza ninguna excepción.
El siguiente programa demuestra la función mencionada anteriormente:
// 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()); } }
Producción:
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()); } }
Producción:
Long value is = -2817123387200223163
Publicación traducida automáticamente
Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA