Java.math.BigDecimal.pow()方法實例
java.math.BigDecimal.pow(int n) 返回一個BigDecimal,其值是 (thisn), 被精確計算的冪值,使其具有無限精度。
參數n必須在範圍0到999999999(包括)。 ZERO.pow(0)返回ONE。
聲明
以下是java.math.BigDecimal.pow()方法的聲明
public BigDecimal pow(int n)
參數
-
n - BigDecimal指數。
返回值
此方法返回的BigDecimal對象的n次冪,即值為 thisn
異常
-
ArithmeticException - 如果n超出範圍
例子
下麵的例子顯示math.BigDecimal.pow()方法的用法
package com.yiibai; 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