当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math.log()用法及代码示例


java.lang.Math.log() 用于找出任何数字的对数值。此方法返回双精度值的自然对数(以 e 为底)作为参数。

用法

public static double log(double x)

参数

x= a value entered by user

返回

This method returns the value In a, the natural logarithm of a.
  • 如果参数为正值,则此方法将返回给定值的对数。
  • 如果参数为负值,则此方法将返回 NaN。
  • 如果参数不是数字 (NaN),则此方法将返回 NaN。
  • 如果参数是 Positive Infinity,则此方法将返回 Positive Infinity。
  • 如果参数是正零或负零,此方法将返回负无穷大。

例子1

public class LogExample1
{
    public static void main(String[] args) 
    {
        double x = 38.9;
        // Input positive double, output logarithm of x  
        System.out.println(Math.log(x));
    }
}

输出:

3.6609942506244004

例子2

public class LogExample2
{
    public static void main(String[] args) 
    {
        double x = -70.4;
        // Input negative double, output NaN  
        System.out.println(Math.log(x));
    }
}

输出:

NaN

例子3

public class LogExample3
{
    public static void main(String[] args) 
    {
        double x = 1.0/0;
        // Input positive infinity, output Infinity
        System.out.println(Math.log(x));
    }
}

输出:

Infinity

示例 4

public class LogExample4
{
    public static void main(String[] args) 
    {
        double x = 0;
        // Input positive zero, output -Infinity
        System.out.println(Math.log(x));
    }
}

输出:

-Infinity






相关用法


注:本文由纯净天空筛选整理自 Java Math.log() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。