java.lang.Math.log(double a)方法範例


java.lang.Math.log(double a) 返回double值的自然對數(以e為底)。特殊情況:

  • 如果引數為NaN或小於零,那麼結果為NaN。

  • 如果引數為正無窮大,那麼結果為正無窮大。

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

宣告

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

public static double log(double a)

引數

  • a -- 一個double值

返回值

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

異常

  • NA

例子

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

package com.yiibai;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 60984.1;
      double y = -497.99;

      // get the natural logarithm for x
      System.out.println("Math.log(" + x + ")=" + Math.log(x));

      // get the natural logarithm for y
      System.out.println("Math.log(" + y + ")=" + Math.log(y));


   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Math.log(60984.1)=11.018368453441132
Math.log(-497.99)=NaN