📜  Java中的 Boolean toString() 方法及示例

📅  最后修改于: 2022-05-13 01:55:21.680000             🧑  作者: Mango

Java中的 Boolean toString() 方法及示例

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

Java的 Boolean 类中有两个 toString() 方法的重载:

公共静态字符串 toString(布尔值)

句法

Boolean.toString(boolean value)

参数:它需要一个布尔作为输入,将其转换为字符串。

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

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

方案一:

// 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

方案二:

// 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

公共字符串 toString()

句法

BooleanObject.toString()

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

以下是说明上述定义方法的程序:

方案一:

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

方案二:

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