Diferencia entre revisiones de «not»
De ArduWiki
(→Referencias) |
|||
Línea 41: | Línea 41: | ||
== Referencias == | == Referencias == | ||
* [https://www.arduino.cc/reference/es/language/functions/time/millis/ Guia de referencia de Arduino] | * [https://www.arduino.cc/reference/es/language/functions/time/millis/ Guia de referencia de Arduino] | ||
+ | * [http://manueldelgadocrespo.blogspot.com/p/blog-page_8.htm Manuel Delgado Crespo] | ||
[[Category:Estructura]] | [[Category:Estructura]] |
Revisión del 23:35 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