Java - StrictMath log(double) 方法



描述

Java StrictMath log(double a) 返回双精度值的自然对数(以 e 为底)。特殊情况

  • 如果参数为 NaN 或小于零,则结果为 NaN。

  • 如果参数为正无穷大,则结果为正无穷大。

  • 如果参数为正零或负零,则结果为负无穷大。

声明

以下是java.lang.StrictMath.log() 方法的声明

public static double log(double a)

参数

a − 一个值

返回值

此方法返回 ln a 值,即 a 的自然对数。

异常

获取正双精度值的对数示例

以下示例显示了 StrictMath log() 方法的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 10.7;

      // print the log of the number
      System.out.println("StrictMath.log(" + x + ")=" + StrictMath.log(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.log(10.7)=2.3702437414678603

获取零双精度值的对数示例

以下示例显示了 StrictMath log() 方法在零值上的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

      // print the log of the number
      System.out.println("StrictMath.log(" + x + ")=" + StrictMath.log(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.log(0.0)=-Infinity

获取负双精度值的对数示例

以下示例显示了 StrictMath log() 方法在负数上的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = -10.7;

      // print the log of the number
      System.out.println("StrictMath.log(" + x + ")=" + StrictMath.log(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.log(-10.7)=NaN
java_lang_strictmath.htm
广告