Dive Into BigDecimal (pending)

在Java中处理大数值的精度问题, 可以考虑使用 BigDecimal或BigInteger.

 

环境如下:

OS: Windows XP Service Pack 2

JDK: 1.5.0_10

 

 

BigDecimal bc = new BigDecimal("15323121312.052");
BigDecimal bc2 = new BigDecimal("13123234.12");

Assert.assertEquals("15336244546.172", bc.add(bc2).toString());
Assert.assertEquals("15309998077.932", bc.subtract(bc2).toString());
Assert.assertEquals("201088908427219973.61424", bc.multiply(bc2).toString());

// java.lang.ArithmeticException
Assert.assertEquals("1167.63300661529309057240", bc.divide(bc2).toString()); 

 

运算 结果的首选标度
max(addend.scale(), augend.scale())
max(minuend.scale(), subtrahend.scale())
multiplier.scale() + multiplicand.scale()
dividend.scale() - divisor.scale()

 

从某种意义上说, BigDecimal可以处理任意位数的数值, 查阅Source便可知:

 

BigDecimal实际上内部维护一个数组

 /**
     * The magnitude of this BigInteger, in <i>big-endian</i> order: the
     * zeroth element of this array is the most-significant int of the
     * magnitude.  The magnitude must be "minimal" in that the most-significant
     * int (<tt>mag[0]</tt>) must be non-zero.  This is necessary to
     * ensure that there is exactly one representation for each BigInteger
     * value.  Note that this implies that the BigInteger zero has a
     * zero-length mag array.
     */
    int[] mag;
 

 

// 避免小数无限循环, 指定精度位数和RoundingMode 
bc.divide(bc2, 3, RoundingMode.HALF_UP); 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值