Can anyone explain the use of ^ operator in java with some examples?Thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This is the same as ^ in most languages, just an XOR.
|
|||
|
It's bitwise XOR. |
|||
|
|
|
That's the bitwise exclusive OR operation. Check out the Bitwise and Bit Shift Operators section of the Java tutorials for more information. |
|||
|
|
|
In java ^ operator used for bitwise XOR operation. Follow this link to see the operator precedence also. |
|||
|
|
|
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. |
|||
|
|