java.lang.Short.valueOf(short s) 方法返回一個表示指定short值的Short 範例。
以下是java.lang.Short.valueOf()方法的宣告
public static Short valueOf(short s)
s -- 這是short的值。
這個方法返回一個代表Short的範例。
NA
下面的例子顯示java.lang.Short.valueOf()方法的使用。
package com.yiibai; import java.lang.*; public class ShortDemo { public static void main(String[] args) { short shortNum = 100; // returns Short instance 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); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Short object representing the specified short value = 100