I have the following loop:
for (byte i = 0 ; i < 128; i++) {
System.out.println(i + 1 + " " + name);
}
When I execute my programm it prints all numbers from -128 to 127 in an infinite loop. Why does this happen?
|
I have the following loop:
When I execute my programm it prints all numbers from -128 to 127 in an infinite loop. Why does this happen? |
|||||||||||||||||
|
|
byte is a 1-byte type so can vary between -128...127, so condition i < 128 is always true. When you add 1 to 127 it overflows and becomes -128 and so on in a (infinite) loop... |
|||||||||||||||||||||
|
|
After 127, when it increments, it will become -128, so your condition won't match .
It will work like this:
as 8 bits can represent a signed number up to 127. See here for the primitive data types. Picture says more than words
|
|||||||
|
|
Because bytes are signed in Java so they will always be less than 128. Why Java chose signed bytes is a mystery from the depths of time. I've never been able to understand why they corrupted a perfectly good unsigned data type :-) Try this instead:
or, better yet:
|
|||||||||||||
|
|
Alright, so the reason behind this has been answered already, but in case you were interested in some background: A A If we wanted to only represent positive numbers, we could do a straight conversion from base 2 to base 10. The way that works is, for a bit string By only representing positive numbers ( an The problem comes in when we want to represent signed data. A naive approach (n.b. this is for background, not the way java does it) is to take the left most bit and make it the sign bit where There are two major problems with such a system. The first is that A much better system (and the one which most systems use) is called Two's Compliment. In Two's Compliment, the positive numbers are represented with their normal bit string where the leftmost bit is 0. Negative numbers are represented with the left most bit as a 1 and then calculating the two's compliment for that number (from whence the system gets its name) Although mathematically it is a slightly more complex process, because we are dealing with the number Two's Compliment is a much more difficult system to grasp, but it avoids the previously stated problems, and for an n-bit number can represent all digits from A couple of notes: |
||||
|
|
|
Best is if you do
|
|||||
|
|
this should work
|
|||||||||||||||||
|