扩展阅读
当前位置: 编程语言>java/jsp
java命名空间java.math类bigdecimal的类成员方法: add定义及介绍
发布时间:2014-2-17
本文导语:
add
public bigdecimal add(bigdecimal augend)
返回一个 bigdecimal,其值为 (this + augend),其标度为 max(this.scale(), augend.scale())。
参数:augend - 将添加到此 bigdecimal 中的值。
返回:this + augend