Java StrictMath exp()方法与示例

StrictMath类exp()方法

  • exp()方法在java.lang包中可用。

  • exp()方法用于返回该方法中给定数字的指数,或者换句话说,它用于计算提高到给定参数幂的e。在这里,exp代表幂运算。

  • exp()方法是静态方法,因此可以使用类名进行访问,如果尝试使用类对象访问该方法,则也不会收到错误。

  • exp()方法不会引发任何异常。

语法:

    public static double exp(double d);

参数:

  • double d –表示要找到其指数值的double类型值。

返回值:

此方法的返回类型为double-返回给定参数的指数值。

注意:

  • 如果我们将NaN作为参数传递,则方法将返回相同的值(NaN)。

  • 如果我们传递一个正无穷大,则方法将返回相同的值(即正无穷大)。

  • 如果我们传递一个负无穷大,则方法返回0.0。

示例

//Java程序演示示例
//StrictMath类的exp(double d)方法的说明。

public class Exp {
    public static void main(String[] args) {
        //变量声明
        double d1 = 7.0 / 0.0;
        double d2 = -7.0 / 0.0;
        double d3 = 0.8;
        double d4 = 2;

        //显示d1,d2,d3和d4的先前值 
        System.out.println("d1: " + d1);
        System.out.println("d2: " + d2);
        System.out.println("d3: " + d3);
        System.out.println("d4: " + d4);

        //在这里,我们将得到(Infinity),因为我们
        //传递参数,其值为(infinity)
        System.out.println("StrictMath.exp(d1): " + StrictMath.exp(d1));

        //在这里,我们得到(0.0),因为我们
        //传递参数,其值为(-infinity)
        System.out.println("StrictMath.exp(d2): " + StrictMath.exp(d2));

        //在这里,我们将得到(提高到0.8的幂),因为我们是
        //传递参数,其值为(0.8)
        System.out.println("StrictMath.exp(d3): " + StrictMath.exp(d3));

        //在这里,我们将得到(e的2的幂),因为我们是
        //传递参数,其值为(2)
        System.out.println("StrictMath.exp(d4): " + StrictMath.exp(d4));
    }
}

输出结果

d1: Infinity
d2: -Infinity
d3: 0.8
d4: 2.0
StrictMath.exp(d1): Infinity
StrictMath.exp(d2): 0.0
StrictMath.exp(d3): 2.225540928492468
StrictMath.exp(d4): 7.38905609893065