我是靠谱客的博主 忧郁樱桃,最近开发中收集的这篇文章主要介绍BigDecimal.add()方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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()方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(83)

评论列表共有 0 条评论

立即
投稿
返回
顶部