Java布尔类toString()方法及示例

Syntax:

句法:

    public String toString();
    public static String toString(boolean value);

布尔类toString()方法 (Boolean class toString() method)

  • toString() method is available in java.lang package.

    toString()方法在java.lang包中可用。

  • toString() method is used to represent String denoted by this Boolean object.

    toString()方法用于表示此布尔对象表示的String。

  • toString(boolean value) method is used to represent String denoted by the given argument of boolean type.

    toString(boolean value)方法用于表示由给定的boolean类型的参数表示的String。

  • These methods don't throw an exception at the time of String representation.

    这些方法在String表示时不会引发异常。

  • toString() is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    toString()是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • toString(boolean value) is a static method, it is accessible with the class name too and, if we try to access these methods with the class object then also we will not get an error.

    toString(boolean value)是一个静态方法,也可以使用类名进行访问,并且,如果我们尝试使用类对象访问这些方法,那么我们也不会收到错误。

Parameter(s):

参数:

  • In the first case toString(), we don't pass any parameter or value.

    在第一种情况下, toString() ,我们不传递任何参数或值。

  • In the second case toString(boolean value), we pass only one parameter of the boolean type it represents the boolean value to be converted.

    在第二种情况下toString(boolean value) ,我们仅传递一个布尔类型的参数,它表示要转换的布尔值。

Return value:

返回值:

In the first case, the return type of this method is String - it returns the String representation of this Boolean object.

在第一种情况下,此方法的返回类型为String-它返回此布尔对象的String表示形式。

In the second case, the return type of this method is String - it returns the String representation of the given argument is of boolean type.

在第二种情况下,此方法的返回类型为String-它返回给定参数的String表示形式为布尔类型。

Note: If this Boolean object value is true, it returns the desired string true. Else, if this Boolean object value is not equal to true, it returns the desired string false.

注意:如果此布尔对象的值为true ,则返回所需的字符串true 。 否则,如果此布尔对象值不等于true ,它将返回所需的字符串false

Example:

例:

// Java program to demonstrate the example 
// of toString() method of Boolean class

public class ToStringOfBooleanClass {
    public static void main(String[] args) {
        boolean b1 = true;
        boolean b2 = false;

        // Object initialization
        Boolean ob1 = new Boolean(b1);
        Boolean ob2 = new Boolean(b2);

        // Display ob1,ob2 values
        System.out.println("ob1:" + ob1);
        System.out.println("ob2:" + ob2);

        // It represents the string of this Boolean object
        String value1 = ob1.toString();

        // It represents the string of the given boolean parameter
        String value2 = Boolean.toString(ob2);

        // Display result values
        System.out.println("ob1.toString(): " + value1);
        System.out.println("Boolean.toString(ob2): " + value2);
    }
}

Output

输出量

ob1:true
ob2:false
ob1.toString(): true
Boolean.toString(ob2): false


翻译自: https://www.includehelp.com/java/boolean-class-tostring-method-with-example.aspx

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值