Java.lang.StrictMath.log()是StrictMath类的内置方法,用于计算给定双精度值的自然对数,即以e为底的对数。它产生三个特殊结果:
- 当参数为正无穷大时,它将返回正无穷大。
- 当参数为NaN或小于零时,它将返回NaN。
- 当参数为正零或负零时,结果为负无穷大。
用法:
public static double log(double num)
参数:该方法接受一个双精度类型的参数num,其对数值将被找到。
返回值:该方法返回num的自然对数值。
例子:
Input: num = 5.0 Output: 1.6094379124341003 Input: num = 10.0 Output: 2.302585092994046
以下示例程序旨在说明Java.lang.StrictMath.log()方法:
示例1:
// Java praogram to illustrate the
// Java.lang.StrictMath.log() Method
import java.lang.*;
public class Geeks {
public static void main(String[] args) {
double num1 = 10 , num2 = 25.2 ;
// It returns natural logarithm(base e)
double log_Value = StrictMath.log(num1);
System.out.print("Log value of " + num1 + " = " );
System.out.println(log_Value);
log_Value = StrictMath.log(num2);
System.out.print("Log value of " + num2 + " = " );
System.out.println(log_Value);
}
}
输出:
Log value of 10.0 = 2.302585092994046 Log value of 25.2 = 3.2268439945173775
示例2:
// Java praogram to illustrate the
// Java.lang.StrictMath.log() Method
import java.lang.*;
public class Geeks {
public static void main(String[] args) {
double num1 = 0 , num2 = (1.0/0.0) , num3 = 1;
// It returns natural logarithm(base e)
double log_Value = StrictMath.log(num1);
System.out.print("Log value of " + num1 + " = " );
System.out.println(log_Value);
log_Value = StrictMath.log(num2);
System.out.print("Log value of " + num2 + " = " );
System.out.println(log_Value);
log_Value = StrictMath.log(num3);
System.out.print("Log value of " + num3 + " = " );
System.out.println(log_Value);
}
}
输出:
Log value of 0.0 = -Infinity Log value of Infinity = Infinity Log value of 1.0 = 0.0
相关用法
- Java StrictMath pow()用法及代码示例
- Java StrictMath exp()用法及代码示例
- Java StrictMath tan()用法及代码示例
- Java StrictMath sin()用法及代码示例
- Java StrictMath min()用法及代码示例
- Java StrictMath signum()用法及代码示例
- Java StrictMath nextUp()用法及代码示例
- Java StrictMath max()用法及代码示例
- Java StrictMath getExponent()用法及代码示例
- Java StrictMath scalb()用法及代码示例
- Java StrictMath cbrt()用法及代码示例
- Java StrictMath cos()用法及代码示例
- Java StrictMath random()用法及代码示例
- Java StrictMath floor()用法及代码示例
- Java StrictMath cosh()用法及代码示例
注:本文由纯净天空筛选整理自ankita_chowrasia大神的英文原创作品 StrictMath log() Method In Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。