Short類的java.lang.Short.byteValue()方法是Java中的內置方法,用於將Short對象的值作為字節返回。
用法
ShortObject.byteValue()
返回值:它返回ShortObject的值作為字節。
下麵是Java中byteValue()方法的實現:
示例1:
// Java code to demonstrate
// Short byteValue() method
class GFG {
public static void main(String[] args)
{
// Short value
Short a = 17;
// wrapping the Short value
// in the wrapper class Short
Short b = new Short(a);
// byteValue of the Short Object
byte output = b.byteValue();
// printing the output
System.out.println("Byte value of "
+ b + " is : " + output);
}
}
輸出:
Byte value of 17 is : 17
示例2:
// Java code to demonstrate
// Short byteValue() method
class GFG {
public static void main(String[] args)
{
String value = "17";
// wrapping the Short value
// in the wrapper class Short
Short b = new Short(value);
// byteValue of the Short Object
byte output = b.byteValue();
// printing the output
System.out.println("Byte value of "
+ b + " is : " + output);
}
}
輸出:
Byte value of 17 is : 17
相關用法
- Java Integer byteValue()用法及代碼示例
- Java Byte byteValue()用法及代碼示例
- Java Number.byteValue()用法及代碼示例
- Java Double byteValue()用法及代碼示例
- Java Float byteValue()用法及代碼示例
- Java Java lang.Long.byteValue()用法及代碼示例
- Java Shorts.indexOf(short[] array, short[] target)用法及代碼示例
- Java Shorts.indexOf(short[] array, short target)用法及代碼示例
- Java Short shortValue()用法及代碼示例
- Java Short compare()用法及代碼示例
- Java Short floatValue()用法及代碼示例
- Java Short longValue()用法及代碼示例
- Java Short hashCode()用法及代碼示例
- Java Short doubleValue()用法及代碼示例
注:本文由純淨天空篩選整理自Sruti Rai大神的英文原創作品 Short byteValue() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。