-
Bug
-
Resolution: Duplicate
-
P2
-
None
-
1.1
-
sparc
-
solaris_2.5
Name: mgC56079 Date: 02/11/97
This constructor works wrong with Double.MIN_VALUE on Win32
==== Here is the test ====
public class DoubleT {
public static void main (String[] args) {
System.out.println("Double.MIN_VALUE = "+Double.MIN_VALUE);
System.out.println("Corresponding BigDecimal = "+
new java.math.BigDecimal(Double.MIN_VALUE).doubleValue());
}
}
==== Here is the output of the test on Solaris ====
Double.MIN_VALUE = 4.9E-324
Corresponding BigDecimal = 4.9E-324
==== Here is the output of the test on Win32 ====
Double.MIN_VALUE = 4.9E-324
Corresponding BigDecimal = 1.0E-323
======================================================================
- duplicates
-
JDK-4032777 Win32 double reader can't handle full range of values
-
- Closed
-
- relates to
-
JDK-4031719 String-to-double conversion fails for small value(s) on win32
-
- Closed
-