byte : Java Glossary

go to home page B words local find full screen, hide local find menu Google search web for more information on this topic jump to foot of page translate this page with Babelfish punctuation 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z (all) ©1996-2009 2009-03-20 Roedy Green, Canadian Mind Products
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, 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
CMP logofeedback Please email your feedback for publication, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.191.100]
You are visitor number 21,799.