Diferencia entre revisiones de «xor»
De ArduWiki
(→Vea también) |
|||
Línea 30: | Línea 30: | ||
== Vea también == | == Vea también == | ||
− | * [[not]] | + | * [[not]] <nowiki>!</nowiki> |
− | * [[and]] | + | * [[and]] <nowiki>&&</nowiki> |
− | * [[or]] | + | * [[or]] <nowiki>||</nowiki> |
− | * [[not bit a bit]] | + | * [[not bit a bit]] <nowiki>~</nowiki> |
− | * [[and bit a bit]] | + | * [[and bit a bit]] <nowiki>&</nowiki> |
− | * [[or bit a bit]] | + | * [[or bit a bit]] <nowiki>|</nowiki> |
− | * [[xor bit a bit]] | + | * [[xor bit a bit]] <nowiki>^</nowiki> |
== Referencias == | == Referencias == |
Revisión del 12:53 23 jul 2018
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 ^