當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。