當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。