当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Groovy max()用法及代码示例



该方法给出了两个参数中的最大值。参数可以是 int、float、long、double。

用法

double max(double arg1, double arg2) 
float max(float arg1, float arg2) 
int max(int arg1, int arg2) 
long max(long arg1, long arg2) 

参数− 此方法接受任何原始数据类型作为参数。

Return Value- 此方法返回两个参数中的最大值。

示例

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

class Example { 
   static void main(String[] args) { 
      System.out.println(Math.max(12.123, 12.456)); 
      System.out.println(Math.max(23.12, 23.0)); 
   } 
}

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

12.456 
23.12

相关用法


注:本文由纯净天空筛选整理自 Groovy - max()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。