Java - StrictMath log10(double) 方法



描述

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

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

声明

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

public static double log10(double a)

参数

a − 一个值

返回值

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

异常

获取正双精度值的 Log10 示例

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

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 10.7;

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

输出

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

StrictMath.log10(10.7)=1.0293837776852097

获取零双精度值的 Log10 示例

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

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

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

输出

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

StrictMath.log10(0.0)=-Infinity

获取负双精度值的 Log10 示例

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

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

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

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

输出

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

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