-
Bug
-
Resolution: Fixed
-
P3
-
1.1.4
-
1.2beta4
-
sparc
-
solaris_2.5
-
Verified
Name: dfC67450 Date: 01/26/98
java.text.ChoiceFormat.ctor(double[] limits, String[] formats) does not check
whether double array is in ascending sorted order.
Javadoc says about setChoices method:
* @param limits contains the top value that you want
* parsed with that format,and should be in ascending sorted order.
Here is the test demonstrating the bug:
-----------------Test.java------------------------
import java.text.*;
public class Test {
public static void main (String args[]){
double[] limits = {3, 1, 2};
String[] formats = {"Three", "One", "Two"};
ChoiceFormat cf = new ChoiceFormat(limits, formats);
double d = 5.0;
System.out.println("format(" + d + ") = " + cf.format(d));
}
}
---------Output from the test---------------------
format(5.0) = Two
--------------------------------------------------
======================================================================