Java Math log()方法及实例
java.lang.Math.log()方法返回一个作为参数的双倍值的自然对数(基数e)。有多种情况。
- 如果参数是NaN或小于0,那么结果是NaN。
- 如果参数是正无穷大,那么结果是正无穷大。
- 如果参数是正零或负零,那么结果是负无穷大。
语法 :
public static double log(double a)
参数 :
a : User input
返回:
This method returns the value ln a.
例子:展示java.lang.Math.log()方法的工作。
// Java program to demonstrate working
// of java.lang.Math.log() method
import java.lang.Math;
class Gfg {
// driver code
public static void main(String args[])
{
double a = -2.55;
double b = 1.0 / 0;
double c = 0, d = 145.256;
// negative integer as argument, output NAN
System.out.println(Math.log(a));
// positive infinity as argument, output Infinity
System.out.println(Math.log(b));
// positive zero as argument, output -Infinity
System.out.println(Math.log(c));
// positive double as argument
System.out.println(Math.log(d));
}
}
输出:
NaN
Infinity
-Infinity
4.978497702968366