xor
De ArduWiki
Descripción
Es un operador boleano xor ^ que permite unir dos expresiones lógicamente.
a | b | a ^ b |
---|---|---|
0 | 0 | 0 |
1 | 0 | 1 |
0 | 1 | 1 |
1 | 1 | 0 |
Sintaxis
espresion 1 ^ expresion 2
Retorna
Verdadero o falso.
Advertencias
- No confundir el operador boleano xor ^, con el operador xor bit a bit |.
Ejemplo
Vea también
- not (!)
- and (&&)
- or (||)
- not bit a bit (~)
- and bit a bit (&)
- or bit a bit (|)
- xor bit a bit (^)
- bitshift right (>>)
- bitshift left (<<)