Java Integer intValue()方法

java.lang.Integer.intValue() 方法返回这个Integer作为一个int值。

1 语法

public int intValue()

2 参数

3 返回值

此方法返回该对象转换为int类型后表示的数值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Integer intValue()方法
 */
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

 

热门文章

优秀文章