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) 

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

返回值 − 此方法返回两个参数中的最大值。


示例

以下是该方法的用法示例 −

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 数字