Java.math.BigDecimal.add() 方法

描述

java.math.BigDecimal.add(BigDecimal augend) 返回一个 BigDecimal,其值为 (this + augend),其比例为 max(this.scale(), augend.scale())。


声明

以下是 java.math.BigDecimal.add() 方法的声明。

public BigDecimal add(BigDecimal augend)

参数

augend − 要添加到此 BigDecimal 的值。


返回值

此方法返回一个 BigDecimal 对象,其值为 this + augend


异常

NA


示例

下面的例子展示了 math.BigDecimal.add() 方法的使用。

package com.tutorialspoint;

import java.math.*;

public class BigDecimalDemo {

   public static void main(String[] args) {

      // create 3 BigDecimal objects
      BigDecimal bg1,bg2,bg3;

      // assign value to bg1 and bg2
      bg1 = new BigDecimal("40.732");
      bg2 = new BigDecimal("30.12");

      // print bg1 and bg2 value
      System.out.println("Object Value is " + bg1);
      System.out.println("Augend value is " + bg2);

      // perform add operation on bg1 with augend bg2
      bg3 = bg1.add(bg2);

      // print bg3 value
      System.out.println("Result is " + bg3);
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

Object Value is 40.732
Augend value is 30.12
Result is 70.852