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


java.lang.StrictMath.log1p() 方法返回引數與1之和的自然對數。對於小值x,log1p(x)的結果更接近ln的真實結果ln(1 + x)的比數浮點值計算log(1.0+x)。它包括一些情況:

  • 如果引數為NaN或小於-1,那麼結果為NaN。
  • 如果引數為正無窮大,那麼結果為正無窮大。
  • 如果引數為負數,那麼結果為負無窮大。
  • 如果引數是零,那麼結果是相同的符號引數為零。

宣告

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

public static double log1p(double x)

引數

  • x -- 這是一個值

返回值

此方法返回ln(x + 1)值, x + 1的自然數。

異常

  • NA

例子

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

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

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

    // returns the natural logarithm of the sum of the argument and 1
    double log1pValue = StrictMath.log1p(d1); 
    System.out.println("Logarithm value of double (d1 + 1) with base 10 :
    " + log1pValue);

    log1pValue = StrictMath.log1p(d2); 
    System.out.println("Logarithm value of double (d2 + 1) with base 10 :
    " + log1pValue);

    log1pValue = StrictMath.log1p(d3); 
    System.out.println("Logarithm value of double (d3 + 1) with base 10 :
    " + log1pValue);
  }
}

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

Logarithm value of double (d1+1) with base 10 : 4.51085950651685
Logarithm value of double (d2+1) with base 10 : 0.0
Logarithm value of double (d3+1) with base 10 : Infinity