Java.lang.Math.log10() 方法
描述
java.lang.Math.log10(double a) 返回双精度值的以 10 为底的对数。 特别案例:
- 如果参数为 NaN 或小于零,则结果为 NaN。
- 如果参数为正无穷大,则结果为正无穷大。
- 如果参数为正零或负零,则结果为负无穷大。
- 如果对于整数 n,参数等于 10n,则结果为 n。
声明
以下是 java.lang.Math.log10() 方法的声明。
public static double log10(double a)
参数
a − 一个值
返回值
此方法返回 a 的以 10 为底的对数。
异常
NA
示例
下面的例子展示了 lang.Math.log10() 方法的使用。
package com.tutorialspoint; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two double numbers double x = 60984.1; double y = 1000; // get the base 10 logarithm for x System.out.println("Math.log10(" + x + ")=" + Math.log10(x)); // get the base 10 logarithm for y System.out.println("Math.log10(" + y + ")=" + Math.log10(y)); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
Math.log10(60984.1)=4.78521661890635 Math.log10(1000)=3.0