Java.math.BigDecimal.pow() 方法

描述

java.math.BigDecimal.pow(int n) 返回一个 BigDecimal,其值为 (thisn),幂是精确计算的,精度不受限制。

参数 n 必须在 0 到 999999999 的范围内,包括 0 到 999999999。 ZERO.pow(0) 返回 ONE。


声明

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

public BigDecimal pow(int n)

参数

n − 将此 BigDecimal 提高到的能力。


返回值

此方法返回 BigDecimal Object 的 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;

      bg1 = new BigDecimal("2.17");

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

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

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

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

The value of 2.17 to the power of 3 is 10.218313