Get the smallest double greater than d : ChoiceFormat « I18N « Java Tutorial






import java.text.ChoiceFormat;

public class Main {
  public static void main(String[] argv) throws Exception {

    double d = 1.2;

    double d2 = ChoiceFormat.nextDouble(d);
    System.out.println(d2);
  }
}
//1.2000000000000002








13.10.ChoiceFormat
13.10.1.Choice Format
13.10.2.Incrementing a Double by the Smallest Possible Amount
13.10.3.Get the smallest double greater than d
13.10.4.Implementing a Simple Event Notifier