Java中的字节 toString() 方法及示例
Byte 类的toString()方法是Java中的内置方法,用于返回 String 值。
公共字符串 toString()
句法:
ByteObject.toString()
返回值:返回一个String对象,其值等于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);
}
}
Java
// Java code to implement
// toString() method of Byte class
class GFG {
public static void main(String[] args)
{
// byte value
byte value = 19;
// toString() method og Byte class
String output = Byte.toString(value);
// printing the output
System.out.println(output);
}
}
输出:
19
公共静态字符串 toString()
句法:
Byte.toString(byte b)
参数:它需要一个字节值b作为要转换为 String 的参数。
返回类型:它返回一个字符串对象,其值等于字节'b'的值。
下面是 toString() 方法的实现:
Java
// Java code to implement
// toString() method of Byte class
class GFG {
public static void main(String[] args)
{
// byte value
byte value = 19;
// toString() method og Byte class
String output = Byte.toString(value);
// printing the output
System.out.println(output);
}
}
输出:
19