byte : Java Glossary

byte
an 8-bit signed quantity. Most bugs involving byte are caused by forgetting that bytes sign extend as soon as you do any calculation with them. Bytes are considered to have values -128 to 127 not 0 to 255. This was a minor error in the design of Java. Almost never are signed bytes useful. You can kludge unsigned bytes with & 0xff. You can agglutinate bytes much the way you can aggluninate chars with StringBuilder by using a ByteArrayStream.

When you add two bytes together you get an int. Why? To simplify the JVM (Java Virtual Machine), and reduce the number of bits needed for an op code, the JVM does not support 8-bit and 16-bit signed and unsigned operations. So bytes, chars, short are promoted to int before doing arithmetic on them.


CMP homejump to top You can get the freshest copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/byte.html J:\mindprod\jgloss\byte.html
logofeedback Please email your feedback for publication, letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email If you want your message kept confidential, not considered for posting, please explicitly specify that.
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.179.214]
You are visitor number 25,145.