Diferencia entre revisiones de «not»
De ArduWiki
(→Referencias) |
(→Vea también) |
||
Línea 38: | Línea 38: | ||
* [[and bit a bit]] | * [[and bit a bit]] | ||
* [[or bit a bit]] | * [[or bit a bit]] | ||
+ | * [[xor bit a bit]] | ||
== Referencias == | == Referencias == |
Revisión del 23:37 25 jun 2018
Descripción
Niega una expresión.
a | !a |
---|---|
0 | 1 |
1 | 0 |
Nota: Recuerde que false, 0 y LOW son sinonimos, si como true, cualquier numero distinto a o y HIGH también lo son.
Sintaxis
!expresion;
Retorno
Retorna la variable negada.
Advertencias
- No confundir el operador boleano not !, con el operador not bit a bit.
Ejemplo
bool a = false;
bool a = 0;
bool a = LOW;
!a //verdadedo en todos los casos