Diferencia entre revisiones de «incremento»
De ArduWiki
(→Parámetros) |
(→Ejemplo 2) |
||
Línea 27: | Línea 27: | ||
== Ejemplo 2 == | == Ejemplo 2 == | ||
+ | En este ejemplo nos hemos atrevido a usar el incremento sobre na variable tipo [[char]]. Se muestra A, C, E, G, I, K. | ||
<syntaxhighlight lang="c++"> | <syntaxhighlight lang="c++"> | ||
void setup(){ | void setup(){ | ||
− | + | Serial.begin(9600); | |
+ | char x = 'A'; | ||
+ | Serial.println(x); | ||
+ | for (byte n=0; n<5; n++){ | ||
+ | x += 2; | ||
+ | Serial.println(x); | ||
+ | } | ||
} | } | ||
void loop(){ | void loop(){ | ||
− | |||
− | |||
− | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> |
Revisión del 16:20 2 feb 2019
Contenido
Descripción
Incremente la variable en una unidad.
Sintaxis
variable++; variable = variable + 1;
Parámetros
- variable
- Nombre de la variable a operar. Puede ser de cualquier tipo: byte, int, long, float.
- valor
- Valor del mismo tipo que variable.
Retorno
Valor de la variable aumentado en uno.
Advertencias
- El riesgo del desbordamiento (ir más allá de lo que una variable puede almacenar, su rango de valores) sigue estando presente. En este caso sería volver a cero o pasar a un número negativo.
Ejemplo 1
byte n = 254;
n++; //255
n++; //0
n++; //1
Ejemplo 2
En este ejemplo nos hemos atrevido a usar el incremento sobre na variable tipo char. Se muestra A, C, E, G, I, K.
void setup(){
Serial.begin(9600);
char x = 'A';
Serial.println(x);
for (byte n=0; n<5; n++){
x += 2;
Serial.println(x);
}
}
void loop(){
}
Vea también
- decremento
- suma compuesta
- resta compuesta
- multiplicacion compuesta
- division compuesta
- modulo compuesto
- or bit a bit compuesto