http://en.wikiversity.org/wiki/Bitwise_operators
http://en.wikipedia.org/wiki/Binary_numbers
Once you learn how to represent numbers in base 2(binary or "bits"), bitwise operators are simple enough to understand.
I'll just give some simple example:
Let m=31532=111101100101100 and n=12325=11000000100101.
Then the result of n & m (bitwise AND - binary operator) is:
(if n(i) and m(i) are both 1, then the result is 1, 0 otherwise)
111101100101100
011000000100101
===============
011000000100100
the result of n | m (bitwise OR - binary operator) is:
(if n(i) and m(i) are 0, then the result is 0, 1 otherwise)
111101100101100
011000000100101
===============
111101100101101
the result of n ^ m (bitwise eXclusive OR - binary operator) is:
(if either n(i) and m(i) is 1, BUT NOT BOTH, then the result is 1, 0 otherwise)
111101100101100
011000000100101
===============
100101100001001
the result of ~n (bitwise NOT - unary operator) is:
(if n(i)=1 then result is 0, 1 otherwise)
111101100101100
===============
000010011010011
let k=3, the result of n >> k (bitwise right shift) is:
111101100101100
===============
000111101100101
They have simply shifted towards right k=3 times. This effectively divides the number by 2^k=8. It's commonly used as an optimization by the compiler.
conversely, let k=3, the result of n << k (bitwise left shift) is
111101100101100
===============
101100101100000
They have simply shifted towards left k=3 times. This effectively multiplies the number by 2^k=8. One thing to notice here is because 32bit integer can only hold upto 2^32-1, there has been an arithmetic overflow, that is the higher k bits have been cut off.
You just have to see these carefully and figure out these patterns.
They are important in programming because they are commonly used in setting/clearing the flag values.
since int32 has 32 binary digits, it can contain upto 32 different kinds of boolean flags(either 0 for false, or 1 for true)
I think this is about it. They are fairly intuitive.