-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.0.2
-
sparc
-
solaris_2.4
Method public static int parseInt(String s , int radix) from class Integer returns 0 when s = "-" and radix is valid radix instead should thowing exception
NumberFormatException.
public class IntegerTest {
public static void main(String[] argv) {
int i = Integer.parseInt("-", 10);
System.out.println("Result i = " + i + ", Expected NumberFormatException");
}
}
NumberFormatException.
public class IntegerTest {
public static void main(String[] argv) {
int i = Integer.parseInt("-", 10);
System.out.println("Result i = " + i + ", Expected NumberFormatException");
}
}
- duplicates
-
JDK-1228227 Integer.parseInt("-") returns 0 instead of throwing NumberFormatException
-
- Closed
-