BigDecimal pow(int n)
优质
小牛编辑
131浏览
2023-12-01
描述 (Description)
java.math.BigDecimal.pow(int n)返回一个BigDecimal,其值为(this n ),精确计算功率,达到无限精度。
参数n必须在0到999999999范围内,包括0和999999999。 ZERO.pow(0)返回ONE。
声明 (Declaration)
以下是java.math.BigDecimal.pow()方法的声明。
public BigDecimal pow(int n)
参数 (Parameters)
n - 将此BigDecimal提升到的权力。
返回值 (Return Value)
此方法返回BigDecimal Object的值,该值为n的幂,即n 。
异常 (Exception)
ArithmeticException - 如果n超出范围。
例子 (Example)
以下示例显示了math.BigDecimal.pow()方法的用法。
package cn.xnip;
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