one’s complement arithmetic : Java Glossary
home O words local find no local find frame, full screen Google search web for topic jump to footer translate with Babelfish by Roedy Green ©1996-2008 Canadian Mind Products
Go to : 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)
one’s complement arithmetic
Java internally uses (or emulates) two’s complement arithmetic for integers. Some hardware architectures, particularly older ones, use one’s complement arithmetic. Positive numbers are stored in binary. That means that for example the number 13 would be written 0x0d = 00001101 = 1*8 + 1*4 + 0*2 + 1*1. The high order bit is called the sign bit. For signed quantities such as byte, short int and long, when that high order bit is a 1, we consider the number negative. To represent a negative number we simply invert each bit. We would write -13 this way: 0x0d00001101111100100xf2. Whenever you do any operation on a byte, it is first sign extended to an int. Don’t confuse one’s complement with one’s compliments — your aggregate flattering activities.

CMP_homejump to top
CMP logo
feedback Please email your feedback for publication, errors, omissions, broken/redirected link reports
and suggestions to improve this page to Roedy Green : feedback email
made with CSS
HTML Checked!
ICRA ratings logo
mindprod.com IP:[65.110.21.43]
Your face IP:[38.103.63.16] The information on this page is for non-military use only.
You are visitor number 11. Military use includes use by defence contractors.
You can get a fresh copy of this page from: or possibly from your local J: drive (Java virtual drive/Mindprod website mirror)
http://mindprod.com/jgloss/onescomplement.html J:\mindprod\jgloss\onescomplement.html