Java StrictMath exp()方法

java.lang.StrictMath.exp() 方法返回欧拉数e为底的双精度值幂。它包括以下情况:

  • 如果参数为NaN,那么结果为NaN。
  • 如果参数为正无穷大,那么结果为正无穷大。
  • 如果参数为负无穷大,那么结果是正零。

1 语法

public static double exp(double a)

2 参数

a: 这是提高e的指数。

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath exp()方法
 */
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

 

热门文章

优秀文章