Java.lang.Integer 类

java.lang.Integer.intValue() 方法返回此 Integer 的 int 值。

语法

public int intValue()

参数

不需要参数。

返回值

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

异常

无。

示例:

在下面的示例中, java.lang.Integer.intValue() 方法以 int 形式返回 Integer 对象。

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //创建Integer对象
    Integer val1 = 25;
    Integer val2 = -25;

    //打印Integer对象的intValue
    System.out.println("intValue of the val1 is: " + val1.intValue()); 
    System.out.println("intValue of the val2 is: " + val2.intValue());   
  }
}

上述代码的输出将是:

intValue of the val1 is: 25
intValue of the val2 is: -25