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