java.lang.Long.shortValue()方法範例


java.lang.Long.shortValue() 方法返回這個Long 作為short 的值。

宣告

以下是java.lang.Long.shortValue()方法的宣告

public short shortValue()

引數

  • NA

返回值

此方法返回該物件表示轉換為short型別後的數值。

異常

  • NA

例子

下面的例子顯示java.lang.Long.shortValue()方法的使用。

package com.yiibai;

import java.lang.*;

public class LongDemo {

   public static void main(String[] args) {

     Long obj = new Long(327);
 
     // returns the value of this Long as a short
     short s = obj.shortValue();
     System.out.println("Value of s = " + s);
   }
}  

讓我們來編譯和執行上面的程式,這將產生以下結果:

Value of s = 327