作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这段代码
BigDecimal a = new BigDecimal("8000000");
BigDecimal b = new BigDecimal("80e5");
System.out.println("a equal b? " +a.compareTo(b));
BigDecimal resultA = a.divide(new BigDecimal("1000"), BigDecimal.ROUND_UP);
BigDecimal resultB = b.divide(new BigDecimal("1000"), BigDecimal.ROUND_UP);
System.out.println(resultA.compareTo(resultB));
System.out.println(resultA);
System.out.println(resultB);
结果
a equal b? 0
-1
8000
1E+5
我不明白?为什么 8000000/1000
and round up 与 80e5/1000
and round up 不同?而java第一次说 a
compare
to b
是0(相等?)
最佳答案
您使用的 divide
方法将结果的比例设置为原始对象的比例:
BigDecimal.divide(BigDecimal, int)
Returns a BigDecimal whose value is (this / divisor), and whose scale is this.scale(). If rounding must be performed to generate a result with the given scale, the specified rounding mode is applied.
由于您从“80e5”创建了 b
,它的比例是 -5,而 divide
必须将其结果四舍五入到 1e+5:
jshell> var b = new BigDecimal("80e5");
b ==> 8.0E+6
jshell> b.scale()
$4 ==> -5
jshell> var c = b.divide(new BigDecimal("1000"), BigDecimal.ROUND_UP);
c ==> 1E+5
jshell> c.scale()
$6 ==> -5
为了解决这个问题,你可以在除法时为结果设置你想要的比例:
jshell> b.divide(new BigDecimal("1000"), 0, BigDecimal.ROUND_UP);
$7 ==> 8000
关于java - BigDecimal 科学计数法 String 和普通 String,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54299938/
我是一名优秀的程序员,十分优秀!