Java - Math log(double) 方法



描述

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

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

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

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

声明

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

public static double log(double a)

参数

a − 一个值

返回值

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

异常

获取正双精度值的日志示例

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

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 10.7;

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

输出

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

Math.log(10.7)=2.3702437414678603

获取零双精度值的日志示例

以下示例显示了 Math log() 方法对零值的用法。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

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

输出

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

Math.log(0.0)=-Infinity

获取负双精度值的日志示例

以下示例显示了 Math log() 方法对负数的用法。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

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

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

输出

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

Math.log(-10.7)=NaN
java_lang_math.htm
广告