Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone please point me to good online tutorials on Bitwise Operations (preferably in Java)? Before anyone write LMGTFY, I've already Googled it but couldn't find one with good examples. Java's own tutorial is also not that extensive and doesn't clearly explain what is going under the hood. I'm a visual learner; so, if there are any resources with good 'working' examples, that would help me a lot. Thanks.

share|improve this question
What do you mean by tutorial? Are you looking for an explanation? – SLaks Dec 24 '09 at 1:24
5  
Both. I assume a good tutorial means something that comes with good explanation (and examples). – cod3-monk-3y Dec 24 '09 at 1:39

6 Answers

up vote 33 down vote accepted

Vipan Singla's page on Bitwise Operations is quite nice.

It is not language specific, but luckily, these operations work the same on Java as many languages (in particular, nearly all C-style languages work this way with bitwise operations). It is very visual, and uses tables to illustrate what happens by operation.

share|improve this answer
In the very first part, he says 3f in hex = 01111111 in binary = 63 in decimal. I just spent an hour trying to wrap my brain around and research how that could be possible (since I didn't know any better). – tjb1982 May 5 at 11:49

A perennial favorite: Sean Eron Anderson's Bit Twiddling Hacks.

share|improve this answer

Additionally to the good introductory guide that Reed Copsey recommended I'd recommend a intresting collection of small real world samples that show what you can actually do with bit operators and that you might enjoy reading and experimenting with once you have got some basic understanding of how bitwise operators work.

Regarding the differences of bitwise operators between Java and C/C++: In Java you don't have unsigned numeric types (except char) but instead you have two right shift operators (>> and >>>) that allow you to do either a signed (>>) or a unsigned shift (>>>). A signed right shift copies the sign bit to all empty places on the left side while a unsigned right shift fills them with zero bits. Also, as booleans in Java cannot be be cast to ints, you cannot use boolean expressions directly as operands for bit operators. I.e. something like this works in C but not in Java:

val |= ( a > b );

In Java you would have to write this insead to do the same thing:

val |= ( a > b ) ? 1 : 0;

share|improve this answer

Aside from the >>> operator, Java's bitwise operators are very similar (identical?) to those in C. Thus, you could extend your search for decent tutorials/examples by looking in the C realm as well.

A brief intro or reference: http://www.cprogramming.com/tutorial/bitwise_operators.html

share|improve this answer

As an introduction to bitwise operations to represent sets and efficiently compute subsets I liked this tutorial. It contains links to samples, including Java code (if you keep following the links at the bottom of the linked pages).

share|improve this answer

Also check Hacker's Delight, there is a sample chapter which is available online. Though not specific to Java, the programming tricks explained here would be applicable with Java also.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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