我想用整数除以一个十进制值.我已经舍入了十进制值(如果它是133.333,那么舍入后的值是133).下面给出的是我的代码段.
v1 = v1.setScale(0, RoundingMode.HALF_UP);
int temp = BigDecimal.valueOf(v1.longValue()).divide(constant1);
常量的值为12.它显示一条错误消息,指出
The method divide(BigDecimal) in the type BigDecimal is not applicable for the arguments (int)
有人可以帮我做这个部门吗?
解决方法:
更改
.divide(constant1);
至
.divide(new BigDecimal(constant1));
顺便说一句,你为什么不做这样的事情
int temp = (int) (Math.round(v1.doubleValue()) / constant1);
??