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