Java Data Type Tutorial - Java Boolean.toString()








Syntax

Boolean.toString() has the following syntax.

public String toString()

Example

In the following code shows how to use Boolean.toString() method.

public class Main {
 /*  w w  w . j  ava2s .  c  om*/
    public static void main(String[] args) {
      
       Boolean boolean1 = new Boolean("true");
       System.out.println(boolean1.toString());
       
 
    }
}

The output: