java.lang.Math.nextDown()
Description
- public static double nextDown(double d)
- public static float nextDown(float f)
The two overloaded methods are basically the same, it’s just that they deal with different data type either float or double.
Most of the methods of the Math class is static and the nextDown() method is no exception. Thus don’t forget that in order to call this method, you don’t have to create a new object. Use the method in the format Math.nextDown(value).
Notes:
- If the argument is NaN, the result is NaN.
- If the argument is negative infinity, the result is negative infinity.
- 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.
Method Syntax
public static double nextDown(double d)
public static float nextDown(float f)
Method Returns
The nextDown() method returns the adjacent floating-point value closer to negative infinity.
Compatibility
Requires Java 1.8 and up
Java Math nextDown() Example
Below is a java code demonstrates the use of nextDown() method of Math class. The example presented might be simple however it shows the behavior of the nextDown() method.
package com.javatutorialhq.java.examples; import java.util.Scanner; /* * This example source code demonstrates the use of * nextDown() method of Math class */ public class MathNexDownExample { public static void main(String[] args) { // Ask for user input System.out.print("start:"); // use scanner to read the console input Scanner scan = new Scanner(System.in); // Assign the input to String variable String start = scan.nextLine(); // close the scanner object scan.close(); // convert the values to double double doubleStart = Double.parseDouble(start); // get the result of nextDown() method double result = Math.nextDown(doubleStart); System.out.println("Result of the operation:"+result); } }
The above java example source code demonstrates the use of nextDown() method of Math class. We simply ask for user input and we use the Scanner class to parse it. Since we have used the nextLine() method to get the console value which is having a return data type of String thus we have used the Double.parseDouble() to transform it into double. Alternatively if the requirements is to use float then you must use the Float.parseFloat() instead. This conversion is required because the argument for nextDown() method only accepts either float or double.