Byte類的shortValue()方法是Java中的內置方法,用於返回此Byte對象的值short。
用法
ByteObject.shortValue()
返回值:它返回ByteObject的值作為short。
下麵是Java中shortValue()方法的實現:
示例1:
// Java code to demonstrate
// Byte shortValue() 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);
// shortValue of the Byte Object
short output = b.shortValue();
// printing the output
System.out.println("Short value of "
+ a + " is : " + output);
}
}
輸出:
Short value of 17 is : 17
示例2:
// Java code to demonstrate
// Byte shortValue() 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);
// shortValue of the Byte Object
short output = b.shortValue();
// printing the output
System.out.println("Short value of "
+ b + " is : " + output);
}
}
輸出:
Short value of 17 is : 17
相關用法
- Java Float shortValue()用法及代碼示例
- Java Double shortValue()用法及代碼示例
- Java Number.shortValue()用法及代碼示例
- Java Short shortValue()用法及代碼示例
- Java Integer shortValue()用法及代碼示例
- Java Byte intValue()用法及代碼示例
- Java Byte byteValue()用法及代碼示例
- Java Byte floatValue()用法及代碼示例
- Java Byte doubleValue()用法及代碼示例
- Java Byte compareTo()用法及代碼示例
- Java Byte compare()用法及代碼示例
- Java Byte longValue()用法及代碼示例
- Java Byte equals()用法及代碼示例
- Java Byte hashCode()用法及代碼示例
- Java Byte toString()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 Byte shortValue() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。