java.math.BigDecimal.plus(MathContext mc) 方法



说明

java.math.BigDecimal.plus(MathContext mc) 返回值为 (+this) 的 BigDecimal,四舍五入依据上下文设置。

此方法的效果与 round(MathContext) 方法相同。

声明

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

public BigDecimal plus(MathContext mc)

参数

mc − 要使用的上下文。

返回值

此方法返回 BigDecimal 对象值,根据需要进行舍入。零结果的比例为 0。

异常

ArithmeticException − 如果结果不精确,但舍入方式为 UNNECESSARY。

示例

以下示例演示如何使用 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;
      bg1 = new BigDecimal("-333.3454");

      MathContext mc = new MathContext(4); // 4 precision

      // perform plus on bg1 using mc
      bg2 = bg1.plus(mc);

      String str = "The Result of plus using context settings is " + bg2;

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

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

The Result of plus using context settings is -333.3
java_math_bigdecimal.htm
广告