byte tostring_Java Byte类toString()方法的示例

byte tostring

Syntax:

句法:

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

短类toString()方法 (Short class toString() method)

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

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

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

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

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

    toString(byte value)方法用于表示由给定的字节类型参数表示的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(byte 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(byte value)是一个静态方法,也可以使用类名进行访问,而且,如果我们尝试使用类对象访问这些方法,那么也不会出错。

Parameter(s):

参数:

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

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

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

    在第二种情况下toString(byte value) ,我们只传递一个字节类型的参数,它表示要转换的字节值。

Return value:

返回值:

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

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

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

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

Example:

例:

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

public class ToStringOfByteClass {
    public static void main(String[] args) {
        byte b1 = 100;
        byte b2 = 50;

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

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

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

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

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

Output

输出量

ob1: 100
ob2: 50
ob1.toString(): 100
Byte.toString(ob2): 50


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

byte tostring

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值