描述
這個java.lang.StrictMath.exp() 方法返回Euler's number e提高到雙重價值的力量。它包括這些情況 -
- 如果參數為NaN,則結果為NaN。
- 如果參數為正無窮大,則結果為正無窮大。
- 如果參數為負無窮大,則結果為正零。
聲明
以下是聲明java.lang.StrictMath.exp()方法
public static double exp(double a)
參數
a- 這是將 e 提高到的 index 。
返回值
此方法返回值 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
相關用法
- Java Java.lang.StrictMath.expm1()用法及代碼示例
- Java Java.lang.StrictMath.tanh()用法及代碼示例
- Java Java.lang.StrictMath.toDegrees()用法及代碼示例
- Java Java.lang.StrictMath.tan()用法及代碼示例
- Java Java.lang.StrictMath.abs()用法及代碼示例
- Java Java.lang.StrictMath.copySign()用法及代碼示例
- Java Java.lang.StrictMath.signum()用法及代碼示例
- Java Java.lang.StrictMath.sinh()用法及代碼示例
- Java Java.lang.StrictMath.cbrt()用法及代碼示例
- Java Java.lang.StrictMath.toRadians()用法及代碼示例
- Java Java.lang.StrictMath.scalb()用法及代碼示例
- Java Java.lang.StrictMath.log10()用法及代碼示例
- Java Java.lang.StrictMath.atan2()用法及代碼示例
- Java Java.lang.StrictMath.random()用法及代碼示例
- Java Java.lang.StrictMath.max()用法及代碼示例
- Java Java.lang.StrictMath.round()用法及代碼示例
- Java Java.lang.StrictMath.nextAfter()用法及代碼示例
- Java Java.lang.StrictMath.sin()用法及代碼示例
- Java Java.lang.StrictMath.atan()用法及代碼示例
- Java Java.lang.StrictMath.cos()用法及代碼示例
注:本文由純淨天空篩選整理自 Java.lang.StrictMath.exp() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。