java.lang.Short.intValue()方法範例


java.lang.Short.intValue() 方法返回這個Short 的int型別值。

宣告

以下是java.lang.Short.intValue()方法的宣告

public int intValue()

引數

  • NA

返回值

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

異常

  • NA

例子

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

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 = 30;
     Short sobj = new Short(sval);
    
     // returns int value of Short
     int intValue = sobj.intValue(); 
    
     // printing int value
     System.out.println("int value of Short is = " + intValue);
  }
}  

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

int value of Short is = 30