vote up 10 vote down star
1

Can anyone explain the use of ^ operator in java with some examples?Thanks

flag

5 Answers

vote up 15 vote down check

This is the same as ^ in most languages, just an XOR.

0 ^ 0 == 0
1 ^ 0 == 1
0 ^ 1 == 1
1 ^ 1 == 0
link|flag
1  
Well, not any language - VB uses ^ for exponentiation. – gkrogers Jan 20 at 9:15
Yes but VB always uses different stuff anyway... ;) – LePad Oct 11 at 23:38
vote up 7 vote down

The caret (^) operator is a bitwise exclusive-or operator (it should not be confused with Math.pow: it is not an exponential operator)

alt text


If the above picture should become unavailable, here is a text version:

   A      B        A^B

true  1 true  1  false 0
true  1 false 0  true  1
false 0 true  1  true  1
false 0 false 0  false 0

Examples, with num1=3, and num2=6, perform an exclusive-OR on each bit position:
num1^num2 is 5:

     num1: 0 0 1 1
     num2: 0 1 1 0
------------------
num1^num2: 0 1 0 1 

num1 num2 num1^num2
---- ---- ---------
0011 0110   0101
link|flag
+1 for the cool image. :) – cletus Jan 20 at 9:44
vote up 5 vote down

It's bitwise XOR.

http://en.wikipedia.org/wiki/Exclusive_or

link|flag
vote up 5 vote down

In java ^ operator used for bitwise XOR operation.

Follow this link to see the operator precedence also.

http://www.uni-bonn.de/~manfear/javaoperators.php

link|flag
vote up 4 vote down

That's the bitwise exclusive OR operation. Check out the Bitwise and Bit Shift Operators section of the Java tutorials for more information.

link|flag

Your Answer

Get an OpenID
or

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