java.lang.Short.shortValue() 方法返回這個Short的short值。
以下是java.lang.Short.shortValue()方法的宣告
public short shortValue()
NA
此方法返回該物件轉換為short型別後表示的數值。
NA
下面的例子顯示java.lang.Short.shortValue()方法的使用。
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 sobj = new Short(sval); // returns short value of Short short shortValue = sobj.shortValue(); // printing short value System.out.println("short value of given Short is = " + shortValue); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
short value of given Short is = 50