java.lang.Short.decode() 方法用于将 String 解码为 Short。接受由以下语法给出的十进制、十六进制和八进制数字:
DecodableString:
- Signopt DecimalNumeral
- 签名opt 0x HexDigits
- 签名opt 0X HexDigits
- 签名opt # 十六进制数字
- 签名opt 0 八进制数字
签名:
- +
- -
可选符号和/或基数说明符("0x"、"0X"、"#"或前导)后面的字符序列零)由 Short.parseShort 方法使用指定的基数(10、16 或 8)进行解析。该字符序列必须表示正值,否则将引发 NumberFormatException。如果指定字符串的第一个字符是减号,则结果取反。字符串中不允许有空格字符。
语法
public static Short decode(String nm)
throws NumberFormatException
参数
不需要参数。
返回值
返回一个包含 nm 表示的短值的 Short 对象。
异常
抛出 NumberFormatException,如果字符串不包含可解析的short。
示例:
在下面的示例中,java.lang.Short.decode() 方法用于将 String 解码为 Short。
import java.lang.*;
public class MyClass {
public static void main(String[] args) {
//创建一个保存短值的字符串
String x1 = "25"; //十进制数
String x2 = "0x6f"; //十六进制数
String x3 = "0X6B"; //十六进制数
String x4 = "-#6c"; //十六进制数
String x5 = "027"; //八进制数
//创建短对象
Short y1 = Short.decode(x1);
Short y2 = Short.decode(x2);
Short y3 = Short.decode(x3);
Short y4 = Short.decode(x4);
Short y5 = Short.decode(x5);
//打印 Short 对象
System.out.println("The Short object y1 is: " + y1);
System.out.println("The Short object y2 is: " + y2);
System.out.println("The Short object y3 is: " + y3);
System.out.println("The Short object y4 is: " + y4);
System.out.println("The Short object y5 is: " + y5);
}
}
上述代码的输出将是:
The Short object y1 is: 25
The Short object y2 is: 111
The Short object y3 is: 107
The Short object y4 is: -108
The Short object y5 is: 23