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


 java.lang.Integer.shortValue() 方法返回這個整數Integer的short值。

宣告

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

public short shortValue()

引數

  • NA

返回值

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

異常

  • NA

例子

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

package com.yiibai;

import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

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

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

Value of s = 100