概述
BigDecimal.add()方法误区:
BigDecimal totalAmount = new BigDecimal("666");
totalAmount.add(new BigDecimal("888"));
System.out.println(totalAmount);
此时输出并不是加之后的值,而是加之前的值,是因为源码中有介绍@return {@code this + augend}
返回值才是需要的结果,而不是在原数据上进行操作。
// Arithmetic Operations
/**
* Returns a {@code BigDecimal} whose value is {@code (this +
* augend)}, and whose scale is {@code max(this.scale(),
* augend.scale())}.
*
* @param augend value to be added to this {@code BigDecimal}.
* @return {@code this + augend}
*/
public BigDecimal add(BigDecimal augend) {
if (this.intCompact != INFLATED) {
if ((augend.intCompact != INFLATED)) {
return add(this.intCompact, this.scale, augend.intCompact, augend.scale);
} else {
return add(this.intCompact, this.scale, augend.intVal, augend.scale);
}
} else {
if ((augend.intCompact != INFLATED)) {
return add(augend.intCompact, augend.scale, this.intVal, this.scale);
} else {
return add(this.intVal, this.scale, augend.intVal, augend.scale);
}
}
}
正确结果应是其返回值:
BigDecimal totalAmount = new BigDecimal("666");
totalAmount.add(new BigDecimal("888"));
System.out.println(totalAmount);
BigDecimal result = totalAmount.add(new BigDecimal("888"));
System.out.println(result);
输出:
最后
以上就是忧郁樱桃为你收集整理的BigDecimal.add()方法的全部内容,希望文章能够帮你解决BigDecimal.add()方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复