Sunday, November 16, 2025
HomeLanguagesJavaBoolean booleanValue() method in Java with examples

Boolean booleanValue() method in Java with examples

The booleanValue() method of Boolean Class is a built in method in java which is used to return the primitive boolean value of instance which is used to call the method booleanValue().

Syntax

BooleanObject.booleanValue()

Return Value: It returns a primitive boolean value.

Below are the examples to illustrate booleanValue() method:

Program 1:




class Lazyroar {
  
    // Driver method
    public static void main(String[] args)
    {
  
        // creating a Boolean object.
        Boolean b = new Boolean(true);
  
        // get primitive data type using booleanValue()
        boolean value = b.booleanValue();
  
        // Print the result
        System.out.println(value);
    }
}


Output:

true

Example 2:




class Lazyroar {
  
    // Driver method
    public static void main(String[] args)
    {
  
        // creating a Boolean object.
        Boolean b = new Boolean(false);
  
        // get primitive data type using booleanValue()
        boolean value = b.booleanValue();
  
        // Print the result
        System.out.println(value);
    }
}


Output:

false
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32402 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6769 POSTS0 COMMENTS
Nicole Veronica
11919 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11990 POSTS0 COMMENTS
Shaida Kate Naidoo
6897 POSTS0 COMMENTS
Ted Musemwa
7150 POSTS0 COMMENTS
Thapelo Manthata
6851 POSTS0 COMMENTS
Umr Jansen
6843 POSTS0 COMMENTS