Java - Math log10(double) 方法



描述

Java Math log10(double a) 返回双精度值的以 10 为底的对数。特殊情况

  • 如果参数为 NaN 或小于零,则结果为 NaN。
  • 如果参数为正无穷大,则结果为正无穷大。
  • 如果参数为正零或负零,则结果为负无穷大。
  • 如果参数等于 10n(其中 n 为整数),则结果为 n。

声明

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

public static double log10(double a)

参数

a − 一个值

返回值

此方法返回 a 的以 10 为底的对数。

异常

获取正双精度值的 Log10 示例

以下示例演示了 Math log10() 方法的用法。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 10.7;

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

输出

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

Math.log10(10.7)=1.0293837776852097

获取零双精度值的 Log10 示例

以下示例演示了 Math log10() 方法在零值上的用法。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

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

输出

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

Math.log10(0.0)=-Infinity

获取负双精度值的 Log10 示例

以下示例演示了 Math log10() 方法在负数上的用法。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

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

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

输出

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

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