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 Object 的值 n 次方,即 thisn


异常

ArithmeticException − 如果结果不精确但舍入模式为 UNNECESSARY,或者 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