Why does this part of code fail:

Integer.parseInt("11000000000000000000000000000000",2);

Exception in thread "main" java.lang.NumberFormatException: For input string: "11000000000000000000000000000000"

As far as I understand Integer is a 32 bit value. The number of zeros and ones in the upper code is 32. If there are 31 the code works. Why is that so?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 5 down vote accepted

A signed int is a 32 bit value, of which one bit is the sign, and 31 bits are the absolute value of the number. Java only supports signed integers, and parseInt and such aren't supposed to parse bit patterns and interpret the first bit as the sign.

Your code fails because tries to parse a number that would require 33 bits to store as a signed integer.

link|improve this answer
I just reread the javadocs for Integer.parseInt() yet again, and I do not see anything saying "this doesn't parse negative numbers" (in fact, it says "signed int"), or, at least explicitly, "this doesn't parse bit patterns". In fact, as described in the javadocs, one could argue that a String of 55 0s should parse to 0. I consider the behavior a bug. But doesn't look like Oracle or OpenJDK will fix it. Do you see anything in the javadocs to contradict this? – user949300 Jan 17 at 2:55
@user949300 parseInt will parse negative binary numbers, if you pass them in as, say, "-10010110". It will also parse a string of 55 zeroes, because it's a valid value for an int. A 32-bit number without leading zeroes is not a valid int value, and so it's rejected. – Inerdial Jan 17 at 15:15
@user949300 What I meant by "won't parse bit patterns" is that what `Integer.parseInt(str, 2)" parses is a number written in base 2. It does not parse a stringified two's complement binary representation of a 32-bit integer. I don't consider this a bug, I just consider it something the method is not intended for – which is parsing "human" textual representations of numbers in arbitrary bases. – Inerdial Jan 17 at 15:21
@Interdial Hmm, I didn't think 55 zeros worked. Thanks for testing! I think it's strange that 55 0s works and 32 1s don't, but that's the way it is. – user949300 Jan 17 at 17:41
feedback

According to the docs, the max value of an Integer is 2^31-1. Which, in binary is:

1111111111111111111111111111111

In other words, 31 1's in a row.

link|improve this answer
feedback

Even though your string, "11.....lots of zeros" is a legal binary representation of a negative integer, Integer.parseInt() fails on it. I consider this a bug.

Adding a little levity, since on rereading this post it sounds too pedantic, I understand that Oracle probably doesn't care much whether I think this is a bug or not. :-)

You can try:

   long avoidOverflows = Long.parseLong("11000000000000000000000000000000",2);
   int thisShouldBeANegativeNumber = (int)avoidOverflows);
   System.out.println(avoidOverflows + " -> " + thisShouldBeANegativeNumber);

you should see
3221225472 -> -1073741824

You sometimes have to do this with Colors depending on how they are stored as text.

BTW, exact thing can happen if you are parsing a Hex representation and you are parsing a negative number like "88888888". You need to use Long.parseLong() then convert.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.