| layout | api-command | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| language | Java | ||||||||||
| permalink | api/java/bit_xor/ | ||||||||||
| command | bitXor | ||||||||||
| related_commands |
|
{% apibody %} r.bitXor(number) → number r.bitXor(number[, number, ...]) → number {% endapibody %}
A bitwise XOR is a binary operation that takes two bit patterns of equal length and performs the logical exclusive OR operation on each pair of corresponding bits. The result in each position is 1 if only the first bit is 1 or only the second bit is 1, but will be 0 if both are 0 or both are 1. In this we perform the comparison of two bits, being 1 if the two bits are different, and 0 if they are the same.
Example:
r.expr(6).bitXor(4).run(conn);
// Result:
2