Java中的 Byte longValue() 方法及示例
Byte 类的longValue()方法是Java中的一个内置方法,用于将这个 Byte 对象的值作为 long 返回。
句法
ByteObject.longValue()
返回值:它返回 ByteObject 的值long 。
下面是Java中 longValue() 方法的实现:
示例 1:
// Java code to demonstrate
// Byte longValue() 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);
// longValue of the Byte Object
long output = b.longValue();
// printing the output
System.out.println("Long value of "
+ b + " is : " + output);
}
}
输出:
Long value of 17 is : 17
示例 2:
// Java code to demonstrate
// Byte longValue() 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);
// longValue of the Byte Object
long output = b.longValue();
// printing the output
System.out.println("Long value of "
+ b + " is : " + output);
}
}
输出:
Long value of 17 is : 17