Java 中的 Byte toString()方法,带示例

原文:https://www . geesforgeks . org/byte-tostring-method-in-Java-with-examples/

字节类toString() 方法是 Java 中的一个内置方法,用于返回字符串值。

公共字符串 toString()

语法:

ByteObject.toString()

返回值:返回一个字符串对象,其值等于 ByteObject 的值。 下面是 toString()方法的实现:

Java 语言(一种计算机语言,尤用于创建网站)

// Java code to implement
// toString() method of Byte class

class GFG {
    public static void main(String[] args)
    {

        // byte value
        byte value = 19;

        // creating a byte Object
        Byte b = new Byte(value);

        // toString() method in Byte class
        String output = b.toString();

        // printing the output
        System.out.println(output);
    }
}

Output: 

19