Open In App

Java Math nextDown() method with Examples

Last Updated : 16 Apr, 2018
Improve
Improve
Like Article
Like
Save
Share
Report

The java.lang.Math.nextDown() is a built-in math function in java which returns the floating-point value adjacent to the parameter provided in the direction of negative infinity.nextDown() implementation may run faster than its equivalent nextAfter() call. nextDown() method is overloaded which means that we have more than one method with the same name under the Math class.Two overloaded method of the nextDown() :

  • double type : nextDown(double d)
  • float type : nextDown(float f)

Note :

  • If the argument is NaN, the result is NaN.
  • If the argument is zero, the result is – Double.MIN_VALUE if we are dealing with
    double and if it’s float then the result is – Float.MIN_VALUE.
  • If the argument is negative infinity, the result is negative infinity.

Syntax :

public static dataType nextDown(dataType g)
Parameter :
 g : an input for starting floating-point value.
Return :
The nextDown() method returns the adjacent floating-point value closer to 
 negative infinity.

Example :To show working of java.lang.Math.nextDown() method.




// Java program to demonstrate working
// of java.lang.Math.nextDown() method
import java.lang.Math;
  
class Gfg {
  
    // driver code
    public static void main(String args[])
    {
        double g = 23.44;
  
        // Input double value, Output adjacent floating-point
        System.out.println(Math.nextDown(g));
  
        float gf = 28.1f;
  
        // Input float value, Output adjacent floating-point
        System.out.println(Math.nextDown(gf));
  
        double a = 0.0 / 0;
  
        // Input NaN, Output NaN
        System.out.println(Math.nextDown(a));
  
        float b = 0.0f;
  
        // Input zero, Output - Float.MIN_VALUE for float
        System.out.println(Math.nextDown(b));
  
        double c = -1.0 / 0;
  
        // Input negative infinity, Output negative infinity
        System.out.println(Math.nextDown(c));
    }
}


Output:

23.439999999999998
28.099998
NaN
-1.4E-45
-Infinity

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads