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

java.math.BigDecimal("+") throws StringIndexOutOfBoundsException

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.4.0
    • 1.3.0, 1.4.0
    • core-libs
    • beta3
    • generic, x86
    • generic, solaris_2.5.1
    • Verified



      Name: bsC130419 Date: 08/03/2001


      The constructor
       public BigDecimal(String val)
      of class java.math.BigDecimal throws StringIndexOutOfBoundsException
      if 'val' is the string "+".
      NumberFormatException expected.
      (JDK1.2's BigDecimal throws NumberFormatException.)

      Following is a test code.
      --------------------------------------------
      import java.math.BigDecimal;

      public class BigDecimalTest {
        public static void main(String[] args) {
          try {
            BigDecimal bd = new BigDecimal("+");
          } catch (Exception e) {
            e.printStackTrace();
          }
        }
      }
      ------------------------------------------------

      Following is a output of the test code.

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

      % java BigDecimalTest
      java.lang.StringIndexOutOfBoundsException: String index out of range: 0
              at java.lang.String.charAt(String.java:507)
              at java.math.BigDecimal.<init>(BigDecimal.java:131)
              at BigDecimalTest.main(BigDecimalTest.java:6)
      -------------------------------------------------
      (Review ID: 120709)
      ======================================================================

            darcy Joe Darcy
            bstrathesunw Bill Strathearn (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: