当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Boolean toString()用法及代码示例


布尔类的toString()方法是一种内置方法,用于以字符串格式返回布尔值。

Java布尔类中的toString()方法有2个重载:

public static String toString(boolean value)

用法


Boolean.toString(boolean value)

参数:它将布尔值作为输入,该值将转换为字符串。

返回类型:返回的值是布尔值的字符串表示形式。

下面是说明toString()方法的程序:

示例1:

// java code to demonstrate 
// Boolean toString() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // boolean type value 
        boolean value = true; 
  
        // static toString() method of Boolean class 
        String output = Boolean.toString(value); 
  
        // printing the value 
        System.out.println(output); 
    } 
}
输出:
true

示例2:

// java code to demonstrate 
// Boolean toString() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // boolean type value 
        boolean value = false; 
  
        // static toString() method of Boolean class 
        String output = Boolean.toString(value); 
  
        // printing the value 
        System.out.println(output); 
    } 
}
输出:
false

public String toString()

用法

BooleanObject.toString()

返回类型:返回的值是调用此方法的布尔实例的String表示形式。


下面是说明上述方法的程序:

示例1:

// java code to demonstrate 
// Boolean toString() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // creating Boolean object 
        Boolean b = new Boolean(true); 
  
        // toString method of Boolean class 
        String output = b.toString(); 
  
        // printing the output 
        System.out.println(output); 
    } 
}
输出:
true

示例2:

// Java code to demonstrate 
// Boolean toString() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // creating Boolean object 
        Boolean b = new Boolean(false); 
  
        // toString method of Boolean class 
        String output = b.toString(); 
  
        // printing the output 
        System.out.println(output); 
    } 
}
输出:
false


相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 Boolean toString() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。