Can anyone explain the use of ^ operator in java with some examples?Thanks
|
|
This is the same as ^ in most languages, just an XOR.
|
||
|
|
The caret (^) operator is a bitwise exclusive-or operator (it should not be confused with Math.pow: it is not an exponential operator)
If the above picture should become unavailable, here is a text version:
Examples, with num1=3, and num2=6, perform an exclusive-OR on each bit position:
|
|||
|
|
|
It's bitwise XOR. |
||
|
|
|
|
In java ^ operator used for bitwise XOR operation. Follow this link to see the operator precedence also. |
||
|
|
|
|
That's the bitwise exclusive OR operation. Check out the Bitwise and Bit Shift Operators section of the Java tutorials for more information. |
||
|
|

