El método next() de la clase Random devuelve el siguiente valor pseudoaleatorio de la secuencia del generador de números aleatorios.
Sintaxis:
protected int next(int bits)
Parámetros: La función acepta bits de un solo parámetro que son los bits aleatorios.
Valor devuelto: este método devuelve el siguiente número pseudoaleatorio.
Excepción: la función no lanza ninguna excepción.
El siguiente programa demuestra la función mencionada anteriormente:
Programa 1:
// program to demonstrate the // function java.util.Random.next() import java.util.*; public class GFG { public static void main(String[] args) { // create random object Random ran = new Random(); // generate next random number System.out.println("Next value returns = " + ran.nextInt(9)); } }
Producción:
Next value returns = 8
Programa 2:
// program to demonstrate the // function java.util.Random.next() import java.util.*; public class GFG { public static void main(String[] args) { // create random object Random ran = new Random(); // generate next random number System.out.println("Next value returns = " + ran.nextInt(55)); } }
Producción:
Next value returns = 54
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