Groovy - log()


该方法返回参数的自然对数。

句法

double log(double d) 

参数

d - 任何原始数据类型。

返回值

此方法返回参数的自然对数。

例子

以下是此方法的使用示例 -

class Example { 
   static void main(String[] args) { 
      double x = 11.635; 
      double y = 2.76;
	  
      System.out.printf("The value of e is %.4f%n", Math.E); 
      System.out.printf("log(%.3f) is %.3f%n", x, Math.log(x)); 
   } 
}

当我们运行上面的程序时,我们将得到以下结果 -

The value of e is 2.7183
log(11.635) is 2.454
groovy_numbers.htm