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

BigInteger and BigDecimal constructors accept invalid string

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.4.0
    • 1.3.0
    • other-libs
    • beta
    • x86
    • windows_2000



      Name: boT120536 Date: 01/21/2001


      java version "1.3.0"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
      Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)

      Constructor BigDecimal("0-128") works, even though "0-128" is badly formatted.
      Similar result with BigInteger("0-128").

      This is inconsistent with java.lang wrappers like Integer, which throw a
      NumberFormatException. It also appears to contradict the JavaDoc help for
      BigInteger and BigDecimal.

      On my machine the following program works. I think it should throw a
      NumberFormatException.

      import java.math.*;
      public class Application1 {
        public static void main(String[] args) {
          BigInteger bd=new BigInteger("0-128");
          System.out.println("Got "+bd+" (class "+bd.getClass().getName()+")");
          System.exit(1);
        }
      }
      (Review ID: 115508)
      ======================================================================

            mmcclosksunw Michael Mccloskey (Inactive)
            bonealsunw Bret O'neal (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: