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