java.lang.Integer.intValue() 方法返回這個Integer作為一個int值。
以下是java.lang.Integer.intValue()方法的宣告
public int intValue()
NA
此方法返回該物件轉換為int型別後表示的數值。
NA
下面的例子顯示java.lang.Integer.intValue()方法的使用。
package com.yiibai; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { Integer obj = new Integer(15); // returns the value of this Integer as an int int i = obj.intValue(); System.out.println("Value of i = " + i); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Value of i = 15