Java.math.BigDecimal.plus() 方法



说明

java.math.BigDecimal.plus() 返回一个 BigDecimal,其值为 (+this),且其标度为 this.scale()。

此方法只返回该 BigDecimal,包含该内容的对称性方法否定 negate()。

声明

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

public BigDecimal plus()

参数

不适用

返回值

此方法返回对象值,即 this。

异常

不适用

示例

以下示例显示了 math.BigDecimal.plus() 方法的用法。

package com.tutorialspoint;

import java.math.*;

public class BigDecimalDemo {

   public static void main(String[] args) {

      // create 2 BigDecimal Objects
      BigDecimal bg1, bg2;

      // assign value to bg1
      bg1 = new BigDecimal("-123.126");

      // assign the result of plus method on bg1 to bg2
      bg2 = bg1.plus();

      String str = "The value of the BigDecimal is " + bg2;

      // print the value of bg2
      System.out.println( str );
   }
}

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

The value of the BigDecimal is -123.126
java_math_bigdecimal.htm
广告