Open In App

ChoiceFormat nextDouble(double, boolean) method in Java with Examples

Last Updated : 07 Aug, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

The nextDouble(double, boolean) method of java.text.ChoiceFormat class is used to get the double value just greater than the passed double value if passed Boolean value is true or it will return the double value just lesser than the passed double value if passed Boolean value is false.

Syntax: 

public static double nextDouble(double d, boolean positive)

Parameter: This method accepts following parameter as follow  

  • d:- it takes double value whose just greater or lesser value is to be found.
  • positive:- it takes Boolean value which check that the returned double value will be greater or smaller.

Return Value: This method returns the double value just greater than the passed double value if passed Boolean value is true or it will return the double value just lesser than the passed double value if passed Boolean value is false.

Below are the examples to illustrate the nextDouble() method:

Example 1:  

Java




// Java program to demonstrate
// nextDouble() method
 
import java.text.*;
import java.util.*;
import java.io.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        // getting double value just
        // greater than the passed value
        // using nextDouble() method
        double value
            = ChoiceFormat.nextDouble(22, false);
 
        // display the result
        System.out.print("Next Double value : "
                         + value);
    }
}


Output: 

Next Double value : 21.999999999999996

 

Example 2: 

Java




// Java program to demonstrate
// nextDouble() method
 
import java.text.*;
import java.util.*;
import java.io.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        // calling getValue() method
        getValue(1.23d, true);
        getValue(10d, false);
        getValue(-12d, true);
        getValue(1.2f, false);
        getValue(50, true);
    }
 
    // defining getValue() method
    public static void getValue(double doub,
                                boolean bool)
    {
 
        // getting double value just
        // greater than the passed value
        // using nextDouble() method
        double value
            = ChoiceFormat.nextDouble(doub, bool);
 
        // display the result
        if (bool)
            System.out.println("Just greater than "
                               + doub + ": "
                               + value);
        else
            System.out.println("Just lesser than "
                               + doub + ": "
                               + value);
    }
}


Output: 

Just greater than 1.23: 1.2300000000000002
Just lesser than 10.0: 9.999999999999998
Just greater than -12.0: -11.999999999999998
Just lesser than 1.2000000476837158: 1.2000000476837156
Just greater than 50.0: 50.00000000000001

 

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/ChoiceFormat.html#nextDouble-double-boolean-
 



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads