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


java.lang.StrictMath.exp() 方法返回歐拉數e為底的雙精度值冪。它包括以下情況:

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

宣告

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

public static double exp(double a)

引數

  • a -- 這是提高e的指數。

返回值

此方法返回值 ea, 其中e是自然對數的底。

異常

  • NA

例子

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

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

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

    // returns Euler's number e raised to the power positive 0 
    double eulerValue = StrictMath.exp(d1); 
    System.out.println("Euler value of d1 = " + eulerValue);
        
    // returns Euler's number e raised to the power negative 0
    eulerValue = StrictMath.exp(d2); 
    System.out.println("Euler value of d2 = " + eulerValue);
        
    // returns Euler's number e raised to the power infinity
    eulerValue = StrictMath.exp(d3);
    System.out.println("Euler value of d3 = " + eulerValue);
        
    // returns Euler's number e raised to the power 5
    eulerValue = StrictMath.exp(d4);
    System.out.println("Euler value of d4 = " + eulerValue);
  }
}

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

Euler value of d1 = 1.0
Euler value of d2 = 1.0
Euler value of d3 = Infinity
Euler value of d4 = 148.4131591025766