Java.lang.Short.parseShort(String s) 方法
描述
java.lang.Short.parseShort(String s) 方法将字符串参数解析为有符号十进制短。
声明
以下是 java.lang.Short.parseShort() 方法的声明。
public static short parseShort(String s) throws NumberFormatException
参数
s − 这是一个包含要解析的短值表示的字符串。
返回值
此方法以十进制返回由参数表示的短值。
异常
NumberFormatException − 如果字符串不包含可解析的short。
示例
下面的例子展示了 java.lang.Short.parseShort() 方法的使用。
package com.tutorialspoint; import java.lang.*; public class ShortDemo { public static void main(String[] args) { String str = "250"; // returns signed decimal short value of string short shortValue = Short.parseShort(str); // prints signed decimalshort value System.out.println("Signed decimal short value for given String is = " + shortValue); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
Signed decimal short value for String is = 250