当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.math.BigDecimal.pow()用法及代码示例



描述

这个java.math.BigDecimal.pow(int n)返回一个 BigDecimal,其值为 (thisn), 幂计算精确,精度无限。

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

声明

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

public BigDecimal pow(int n)

参数

n- 将这个 BigDecimal 提升到的权力。

返回值

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

      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

相关用法


注:本文由纯净天空筛选整理自 Java.math.BigDecimal.pow() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。