Groovy – max()

  • Post author:
  • Post category:Groovy
  • Post comments:1 Comment
Maximum

The method gives the maximum of the two arguments. The argument can be int, float, long, double.

Syntax

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

Parameters โˆ’ This method accepts any primitive data type as parameter.

Return Value โˆ’ This method Returns the maximum of the two arguments.

Example

Following is an example of the usage of this method โˆ’

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)); 
   } 
}

When we run the above program, we will get the following result โˆ’

12.456 
23.12

Previous Page:-Click Here

This Post Has One Comment

Leave a Reply