java将integer转为int类型
时间: 2023-12-31 20:03:43 浏览: 78
Java中Integer两种转int方法比较
5星 · 资源好评率100%
可以直接使用 `intValue()` 方法将 Integer 对象转换为 int 类型,示例代码如下:
```java
Integer num = 10;
int result = num.intValue();
System.out.println(result);
```
输出结果为:`10`
阅读全文
Java中Integer两种转int方法比较