File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -662,15 +662,18 @@ System.out.println(a == b);// false
662
662
663
663
``` java
664
664
BigDecimal a = new BigDecimal (" 1.0" );
665
- BigDecimal b = new BigDecimal (" 0.9 " );
665
+ BigDecimal b = new BigDecimal (" 1.00 " );
666
666
BigDecimal c = new BigDecimal (" 0.8" );
667
667
668
- BigDecimal x = a. subtract(b );
668
+ BigDecimal x = a. subtract(c );
669
669
BigDecimal y = b. subtract(c);
670
670
671
- System . out. println(x); /* 0.1 */
672
- System . out. println(y); /* 0.1 */
673
- System . out. println(Objects . equals(x, y)); /* true */
671
+ System . out. println(x); /* 0.2 */
672
+ System . out. println(y); /* 0.20 */
673
+ // 比较内容,不是比较值
674
+ System . out. println(Objects . equals(x, y)); /* false */
675
+ // 比较值相等用相等compareTo,相等返回0
676
+ System . out. println(0 == x. compareTo(y)); /* true */
674
677
```
675
678
676
679
关于 ` BigDecimal ` 的详细介绍,可以看看我写的这篇文章:[ BigDecimal 详解] ( https://javaguide.cn/java/basis/bigdecimal.html ) 。
You can’t perform that action at this time.
0 commit comments