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)
======================================================================
- duplicates
-
JDK-4505236 Bigdecimal(String arg) bugged when called with : new BigDecimal("+")
-
- Closed
-
- relates to
-
JDK-4259453 java.math.BigDecimal("1.2e") throws StringIndexOutOfBoundsException
-
- Closed
-
-
JDK-4831095 BigDecimal constructor doesn't return exception with invalid format in 1.3.1_0X
-
- Closed
-
-
JDK-4311995 BigDecimal String constructor throws StringIndexOutOfBounds
-
- Closed
-
-
JDK-4069162 BigDecimal - problem with signed strings e.g. "+0"
-
- Resolved
-
-
JDK-4294519 java.math.BigDecimal string constructor speed improvement
-
- Closed
-
(1 relates to)