Java - Boolean toString() method



Description

The Java Boolean toString() returns a String object representing this Boolean's value. If this object represents the value true, a string equal to "true" is returned. Otherwise, a string equal to "false" is returned.

Declaration

Following is the declaration for java.lang.Boolean.toString() method

public String toString()

Overrides

toString in class Object

Parameters

NA

Return Value

This method returns a string representation of this object.

Exception

NA

Example 1

The following example shows the usage of Boolean toString() method for a boolean object value as true.

package com.tutorialspoint;
public class BooleanDemo {
   public static void main(String[] args) {

      // create 1 Boolean objects b1
      Boolean b1;

      // assign value to b1
      b1 = Boolean.valueOf(true);

      // create 1 String s1
      String s1;

      // assign string value of object b1 to s1
      s1 = b1.toString();

      String str1 = "String value of boolean object " + b1 + " is "  + s1;

      // print s1 value
      System.out.println( str1 );
   }
}

Output

Let us compile and run the above program, this will produce the following result −

String value of boolean object true is true

Example 2

The following example shows the usage of Boolean toString() method for a boolean object value as false.

package com.tutorialspoint;
public class BooleanDemo {
   public static void main(String[] args) {

      // create 1 Boolean objects b1
      Boolean b1;

      // assign value to b1
      b1 = Boolean.valueOf(false);

      // create 1 String s1
      String s1;

      // assign string value of object b1 to s1
      s1 = b1.toString();

      String str1 = "String value of boolean object " + b1 + " is "  + s1;

      // print s1 value
      System.out.println( str1 );
   }
}

Output

Let us compile and run the above program, this will produce the following result −

String value of boolean object false is false

Example 3

The following example shows the usage of Boolean toString() method for a boolean object value as null.

package com.tutorialspoint;
public class BooleanDemo {
   public static void main(String[] args) {

      // create 1 Boolean objects b1
      Boolean b1;

      // assign value to b1
      b1 = Boolean.valueOf(null);

      // create 1 String s1
      String s1;

      // assign string value of object b1 to s1
      s1 = b1.toString();

      String str1 = "String value of boolean object " + b1 + " is "  + s1;

      // print s1 value
      System.out.println( str1 );
   }
}

Output

Let us compile and run the above program, this will produce the following result −

String value of boolean object false is false
java_lang_boolean.htm
Advertisements