Java.math.BigDecimal.pow() 方法



描述

java.math.BigDecimal.pow(int n, MathContext mc) 方法返回的 BigDecimal 值是 (thisn)。当前实现使用 ANSI 标准 X3.274-1996 中定义的核心算法,并根据上下文设置进行舍入。

一般而言,返回的数值在所选精度的两个 ulps 内处于精确数值。

声明

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

public BigDecimal pow(int n, MathContext mc)

参数

  • n − 将此 BigDecimal 提升到的幂。

  • mc − 要使用的上下文。

返回值

此方法返回使用 ANSI 标准 X3.274-1996 算法将 BigDecimal 对象提升到 n 次方(即 thisn)的值。

异常

ArithmeticException − 如果结果不准确,但舍入模式为不需要,或 n 超出范围。

示例

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

package com.tutorialspoint;

import java.math.*;

public class BigDecimalDemo {

   public static void main(String[] args) {

      // create 2 BigDecimal Objects
      BigDecimal bg1, bg2;

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

      bg1 = new BigDecimal("2.17");

      // apply pow method on bg1 using mc
      bg2 = bg1.pow(3, mc);

      String str = "The value of " + bg1 + " to the power of 3, rounded to " + bg2;

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

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

The value of 2.17 to the power of 3, rounded to 10.22
java_math_bigdecimal.htm
广告