在Java中,可以使用intValue()
方法将BigDecimal
对象转换为int
类型。示例如下:
BigDecimal decimal = new BigDecimal("123.45");
int intValue = decimal.intValue();
System.out.println(intValue); // 输出 123
注意,intValue()
方法会将BigDecimal
对象进行截断,并返回整数部分的值。如果希望进行四舍五入,可以使用setScale()
方法指定精度,然后再使用intValue()
方法进行转换,如下所示:
BigDecimal decimal = new BigDecimal("123.45");
BigDecimal roundedDecimal = decimal.setScale(0, RoundingMode.HALF_UP); // 四舍五入保留整数部分
int intValue = roundedDecimal.intValue();
System.out.println(intValue); // 输出 123