Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4031497

java.math.BigDecimal constructor(double) works wrong on Win32

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P2 P2
    • None
    • 1.1
    • core-libs
    • 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

      ======================================================================

            jjb Josh Bloch
            mgorshen Mikhail Gorshenev (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: