Friday, December 19, 2025
HomeLanguagesJavaRandom next() method in Java with Examples

Random next() method in Java with Examples

The next() method of Random class returns the next pseudorandom value from the random number generator’s sequence.

Syntax:

protected int next(int bits)

Parameters: The function accepts a single parameter bits which are the random bits.

Return Value: This method returns the next pseudorandom number.

Exception: The function does not throws any exception.

Program below demonstrates the above mentioned function:

Program 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));
    }
}


Output:

Next value returns = 8

Program 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));
    }
}


Output:

Next value returns = 54
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32455 POSTS0 COMMENTS
Milvus
108 POSTS0 COMMENTS
Nango Kala
6823 POSTS0 COMMENTS
Nicole Veronica
11958 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12038 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6911 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS