Java StrictMath log()方法与示例

StrictMath类log()方法

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

  • log()方法用于返回方法中给定参数的给定(以e为底)的对数。

  • log()方法是静态方法,因此可以使用类名进行访问,如果尝试使用类对象访问该方法,则不会出现任何错误。

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

语法:

    public static double log(double d);

参数:

  • double d –表示double类型的参数。

返回值:

此方法的返回类型为double-返回给定参数的对数(以e为底)。

注意:

  • 如果传递NaN,则方法返回NaN。

  • 如果传递的值小于0,则方法返回NaN。

  • 如果传递无穷大,则方法将返回无穷大。

  • 如果传递0,则方法返回负无穷大。

示例

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

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

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

        //在这里,我们将得到(NaN),因为我们
        //传递参数,其值小于0(-0.6)
        System.out.println("StrictMath.log(d3): " + StrictMath.log(d3));

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

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

        //在这里,我们将得到(提高到给定参数的幂) 
        //我们正在传递参数 
        //其值为(1274.68)
        System.out.println("StrictMath.log(d4): " + StrictMath.log(d4));
    }
}

输出结果

d1: Infinity
d2: 0.0
d3: -0.6
d4: 124.68
StrictMath.log(d3): NaN
StrictMath.log(d1): Infinity
StrictMath.log(d2): -Infinity
StrictMath.log(d4): 4.825750454899136