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


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


java.lang.Math.log()方法返回双精度值的自然对数(以e为底)作为参数。有多种情况:

  • 如果参数为NaN或小于零,则结果为NaN。
  • 如果参数为正无穷大,则结果为正无穷大。
  • 如果参数为正零或负零,则结果为负无穷大。

用法:

public static double log(double a)

参数:


a:User input

返回:

This method returns the value ln a.

例:展示java.lang.Math.log()方法的用法。

// Java program to demonstrate working 
// of java.lang.Math.log() method 
import java.lang.Math; 
  
class Gfg { 
      
    // driver code 
    public static void main(String args[]) 
    { 
  
        double a = -2.55; 
        double b = 1.0 / 0; 
        double c = 0, d = 145.256; 
          
  
        // negative integer as argument, output NAN 
        System.out.println(Math.log(a)); 
  
        // positive infinity as argument, output Infinity 
        System.out.println(Math.log(b)); 
  
        // positive zero as argument, output -Infinity 
        System.out.println(Math.log(c)); 
          
        // positive double as argument 
        System.out.println(Math.log(d)); 
          
    } 
}
输出:
NaN
Infinity
-Infinity
4.978497702968366


相关用法


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