Java中的 Byte byteValue() 方法及示例
Byte 类的byteValue方法是Java中的一个内置方法,用于将这个 Byte 对象的值作为字节返回。
句法
ByteObject.byteValue()
返回值:它以字节形式返回 ByteObject 的值。
下面是 byteValue() 方法在Java中的实现:
示例 1:
// Java code to demonstrate
// Byte byteValue() method
class GFG {
public static void main(String[] args)
{
// byte value
byte a = 17;
// wrapping the byte value
// in the wrapper class Byte
Byte b = new Byte(a);
// byteValue of the Byte Object
byte output = b.byteValue();
// printing the output
System.out.println("Byte value of "
+ a + " is : " + output);
}
}
输出:
Byte value of 17 is : 17
示例 2:
// Java code to demonstrate
// Byte byteValue() method
class GFG {
public static void main(String[] args)
{
String value = "17";
// wrapping the byte value
// in the wrapper class Byte
Byte b = new Byte(value);
// byteValue of the Byte Object
byte output = b.byteValue();
// printing the output
System.out.println("Byte value of "
+ b + " is : " + output);
}
}
输出:
Byte value of 17 is : 17