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 explain the use of ^ operator in java with some examples?Thanks

share|improve this question

5 Answers

up vote 37 down vote accepted

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

0 ^ 0 == 0
1 ^ 0 == 1
0 ^ 1 == 1
1 ^ 1 == 0
share|improve this answer
3  
Well, not any language - VB uses ^ for exponentiation. – gkrogers Jan 20 '09 at 9:15
6  
Yes but VB always uses different stuff anyway... ;) – LePad Oct 11 '09 at 23:38

It's bitwise XOR.

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

share|improve this answer

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

share|improve this answer

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

share|improve this answer

Some of the other answers only say it is a bitwise XOR, but note that it can also be a logical XOR if the operands are of boolean type, according to this source.

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.