当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.StrictMath.exp()用法及代码示例



描述

这个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.lang.StrictMath.exp() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。