Byte类的byteValue方法是Java中的一种内置方法,用于将Byte对象的值作为字节返回。
用法
ByteObject.byteValue()
返回值:它返回ByteObject的值作为字节。
下面是Java中byteValue()方法的实现:
示例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
相关用法
- Java Double byteValue()用法及代码示例
- Java Float byteValue()用法及代码示例
- Java Number.byteValue()用法及代码示例
- Java Java lang.Long.byteValue()用法及代码示例
- Java Integer byteValue()用法及代码示例
- Java Short byteValue()用法及代码示例
- Java Byte equals()用法及代码示例
- Java Byte shortValue()用法及代码示例
- Java Byte compareTo()用法及代码示例
- Java Byte compare()用法及代码示例
- Java Byte intValue()用法及代码示例
- Java Byte floatValue()用法及代码示例
- Java Byte doubleValue()用法及代码示例
- Java Byte toString()用法及代码示例
- Java Byte longValue()用法及代码示例
注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 Byte byteValue() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。