Java.lang.StrictMath.max() Method



Description

The java.lang.StrictMath.max(double a, double b) method returns greater of two double values.

If the arguments have the same value, the result is that same value. If either value is NaN, then the result is NaN.

This method considers negative zero to be strictly smaller than positive zero. If one argument is positive zero and the other negative zero, the result is positive zero.

Declaration

Following is the declaration for java.lang.StrictMath.max() method

public static double max(double a, double b)

Parameters

  • a − This is the double value.

  • b − This is another double value.

Return Value

This method returns the larger of a and b.

Exception

NA

Example

The following example shows the usage of java.lang.StrictMath.max() method.

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      double d1 = 85 , d2 = 20, d3 = -10;

      // both positive values
      double maxValue = StrictMath.max(d1, d2); 
      System.out.println("StrictMath.max(85, 20) : " + maxValue);
 
      // one positive and one negative value
      maxValue = StrictMath.max(d1, d3); 
      System.out.println("StrictMath.max(85, -10) : " + maxValue);    
   }
}

Let us compile and run the above program, this will produce the following result −

StrictMath.max(85, 20) : 85.0
StrictMath.max(85, -10) : 85.0
java_lang_strictmath.htm
Advertisements