当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。