當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.StrictMath.cbrt()用法及代碼示例



描述

這個java.lang.StrictMath.cbrt() 方法返回雙精度值的立方根。對於正有限 x,cbrt(-x) == -cbrt(x);也就是說,負值的立方根是該值大小的立方根的負數。這包括這些情況 -

  • 如果參數為NaN,則結果為NaN。
  • 如果參數為無窮大,則結果為無窮大,其符號與參數相同。
  • 如果自變量為零,則結果為零,其符號與自變量相同。

聲明

以下是聲明java.lang.StrictMath.cbrt()方法

public static double cbrt(double a)

參數

a- 這是雙值

返回值

此方法返回 a 的立方根。

異常

NA

示例

下麵的例子展示了 java.lang.StrictMath.cbrt() 方法的用法。

package com.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.lang.StrictMath.cbrt() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。