java bigdecimal转integer
时间: 2023-08-31 09:06:10 浏览: 301
bigdecimal转integer.md
要将Java BigDecimal类型转换为Integer类型,可以使用BigDecimal的intValue()方法。这个方法将BigDecimal转换为int类型,然后再将int类型转换为Integer类型。
以下是一个示例代码:
```
BigDecimal decimal = new BigDecimal("123.456");
Integer integer = decimal.intValue();
```
在上面的代码中,我们创建了一个BigDecimal对象"123.456",然后调用intValue()方法将其转换为int类型,最后将int类型转换为Integer类型并赋值给了一个Integer类型的变量integer。
阅读全文