赞
踩
Byte类的toString()方法是Java中的内置方法,用于返回String值。
public String toString()
sybtax:
ByteObject.toString()
返回值:它返回一个String对象,其值等于ByteObject的值。
下面是toString()方法的实现:
// 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);
}
}
输出:
19
public static String toString()
用法:
Byte.toString(byte b)
参数:它采用字节值b作为要转换为String的参数。
返回类型:它返回一个String对象,其值等于字节“ b”的值。
下面是toString()方法的实现:
// 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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。