java.lang.StrictMath.log()方法範例


 java.lang.StrictMath.log() 方法返回double自然對數(以e為底)的值。它包括了一些情況:

  • 如果引數為NaN或小於零,那麼結果為NaN。
  • 如果引數為正無窮大,那麼結果為正無窮大。
  • 如果引數為正零或負零,那麼結果是負無窮大。

宣告

以下是java.lang.StrictMath.log()方法的宣告

public static double log(double a)

引數

  • a -- 這是一個值

返回值

此方法返回ln a的值,即自然對數。

異常

  • NA

例子

下面的例子顯示java.lang.StrictMath.log()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = 10 , d2 = 0.0 , d3 = (1.0/0.0), d4 = 1.0;

    // returns natural logarithm(base e) of a double  value
    double logValue = StrictMath.log(d1); 
    System.out.println("Log value of " + d1 + " = " + logValue);
        
    logValue = StrictMath.log(d2); 
    System.out.println("Log value of " + d2 + " = " + logValue);
        
    logValue = StrictMath.log(d3); 
    System.out.println("Log value of " + d3 + " = " + logValue);
        
    logValue = StrictMath.log(d4); 
    System.out.println("Log value of " + d4 + " = " + logValue);
  }
}

讓我們編譯並執行上述程式,這將產生以下結果:

Log value of 10.0 = 2.302585092994046
Log value of 0.0 = -Infinity
Log value of Infinity = Infinity
Log value of 1.0 = 0.0