Wednesday, July 29, 2026
HomeLanguagesJavaRandom nextBoolean() method in Java with Examples

Random nextBoolean() method in Java with Examples

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

Syntax:

public boolean nextBoolean()

Parameters: The function does not accepts any parameter.

Return Value: This method returns the next pseudorandom, uniformly distributed boolean value.

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.nextBoolean()
  
import java.util.*;
public class GFG {
    public static void main(String[] args)
    {
        // create random object
        Random random = new Random();
  
        // get boolean value
        System.out.println("Random boolean value is : "
                           + random.nextBoolean());
    }
}


Output:

Random boolean value is : true

Program 2:




// program to demonstrate the
// function java.util.Random.nextBoolean()
  
import java.util.*;
public class GFG {
    public static void main(String[] args)
    {
        // create random object
        Random random = new Random();
  
        // get boolean value
        System.out.println("Random boolean value is : "
                           + random.nextBoolean());
    }
}


Output:

Random boolean value is : false
RELATED ARTICLES

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6973 POSTS0 COMMENTS