java.lang.StrictMath.cbrt()方法範例


java.lang.StrictMath.cbrt() 方法返回double值的立方根。對於正有限 x,cbrt(-x) == -cbrt(x); 也就是說,負值的立方根是負的立方根。這包括以下情況:

  • 如果引數為NaN,那麼結果為NaN。
  • 如果引數為無窮大,那麼結果是相同的符號作為引數的無窮大。
  • 如果引數是0,那麼結果是相同引數符號為零。

宣告

以下是java.lang.StrictMath.cbrt()方法的宣告

public static double cbrt(double a)

引數

  • a -- 這是double的值

返回值

此方法返回立方根。

異常

  • NA

例子

下面的例子顯示java.lang.StrictMath.cbrt()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = 8.05 , d2 = 729, d3 = 0;

    // returns the cube root of a double value
    double cbrtValue = StrictMath.cbrt(d1); 
    System.out.println("Cube root of " + d1 + " = " + cbrtValue);
        
    cbrtValue = StrictMath.cbrt(d2); 
    System.out.println("Cube root of " + d2 + " = " + cbrtValue);
        
    cbrtValue = StrictMath.cbrt(d3); 
    System.out.println("Cube root of " + d3 + " = " + cbrtValue);
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Cube root of 8.05 = 2.0041580161269152
Cube root of 729 = 9.0
Cube root of 0 = 0.0