java.lang.Short.toString(short s) 方法返回一個表示指定short基數被假定為10的一個新String物件。
以下是java.lang.Short.toString()方法的宣告
public static String toString(short s)
s -- 這是short將用於被轉換。
此方法返回指定short的字串表示形式。
NA
下面的例子顯示java.lang.Short.toString()方法的使用。
package com.yiibai; import java.lang.*; public class ShortDemo { public static void main(String[] args) { // create short object and assign value to it short sval = 50; Short shortValue = new Short(sval); // returns a String object representing this Short value. System.out.println("Value is = " + shortValue.toString()); // returns a String object representing the specified short System.out.println("Value of specified short is = " + Short.toString((short)sval)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Value is = 50 Value of specified short is = 50