Java.lang.StrictMath.exp() 方法
描述
java.lang.StrictMath.exp() 方法返回 Euler's number e 提高到 double 值的幂。它包括这些情况 −
- 如果参数为 NaN,则结果为 NaN。
- 如果参数为正无穷大,则结果为正无穷大。
- 如果参数为负无穷大,则结果为正零。
声明
以下是 java.lang.StrictMath.exp() 方法的声明。
public static double exp(double a)
参数
a − 这是将 e 提高到的指数。
返回值
此方法返回值 ea,其中 e 是自然对数的底。
异常
NA
示例
下面的例子展示了 java.lang.StrictMath.exp() 方法的使用。
package com.tutorialspoint; 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