gpt4 book ai didi

java - 无法在 Groovy 中添加 BigDecimal 值

转载 作者:行者123 更新时间:2023-12-01 11:38:12 26 4
gpt4 key购买 nike

def total = new BigDecimal("0.00");
total.add(new BigDecimal("1"));
println total;

考虑上面的以下代码:此代码的输出为零。

为什么?

最佳答案

您必须分配结果(请参阅下面的文档)。或者变得时髦:

def total = 0.0G + 1G
assert total.getClass() == BigDecimal
assert total==1.0G

total += 1.0G
assert total.getClass() == BigDecimal
assert total==2.0G

http://docs.oracle.com/javase/7/docs/api/java/math/BigDecimal.html#add%28java.math.BigDecimal%29

 public BigDecimal add(BigDecimal augend)

Returns a BigDecimal whose value is (this + augend), and whose scale is max(this.scale(), augend.scale()).

Parameters:

augend - value to be added to this BigDecimal.

Returns:

this + augend

关于java - 无法在 Groovy 中添加 BigDecimal 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29788441/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com