logo

Java Max() Method


Show

Description

This process gives the greatest of the two arguments. The row can be int, float, long, double. The max() is a system of figure class under Java. This scheme numerically profits the greatest value between the two process arguments specific to a user. This system can be loaded and it takes the arguments in int, double, drift, and long. This method is specified by the Math Class.

Syntax

This method has the following variants:

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

Here is the detail of parameters −

  • This method accepts any primitive data type as a parameter.

Return Value

  • This method returns the maximum of the two arguments.

Example

public class Test { 

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

This will produce the following result −

Output

12.456
23.12

Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.