java.lang.Short.valueOf(String s)方法實例
java.lang.Short.valueOf(String s) 方法返回保持由指定的字符串中給定值的Short對象。
聲明
以下是java.lang.Short.valueOf()方法的聲明
public static Short valueOf(String s) throws NumberFormatException
參數
-
s -- 這是要被解析的字符串。
返回值
此方法返回保持由字符串參數表示的值的Short對象。
異常
-
NumberFormatException -- 如果該串不包含一個可分析的short。
例子
下麵的例子顯示java.lang.Short.valueOf()方法的使用。
package com.yiibai; import java.lang.*; public class ShortDemo { public static void main(String[] args) { short shortNum = 100; String str = "600"; // returns Short object representing given short value Short ShortValue = Short.valueOf(shortNum); // displays the short object value System.out.println("Short object representing the specified short value = " + ShortValue); // returns a Short object holding the value given by the specified String ShortValue = Short.valueOf(str); // displays the short object value System.out.println("Short object holding the value given by the specified String = " + ShortValue); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Short object representing the specified short value = 100 Short object holding the value given by the specified String = 600