--

Descrição

Decrementa o valor de uma variável em 1.

Sintaxe

x--; // decrementa x em um e retorna o valor antigo de x --x; // decrementa x em um e retorna o novo valor de x

Parâmetros

  • x: variável. Tipos de dados permitidos: integer, long (possibly unsigned)

Retorna

O valor original ou decrementado da variável, que depende se o operador está à esquerda ou direita da variável.

Código de Exemplo

Código de Exemplo 1

void setup() { Serial.begin(9600); int x = 2; int y = --x; // x contém 1, y contém 1 Serial.print("x = "); Serial.println(x); Serial.print("y = "); Serial.println(y); } void loop() { }

The result on Serial Monitor:

COM6
Send
x = 1 y = 1
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

Código de Exemplo 2

void setup() { Serial.begin(9600); int x = 2; int y = x--; // x contém 1, mas y ainda contém 2 Serial.print("x = "); Serial.println(x); Serial.print("y = "); Serial.println(y); } void loop() { }

The result on Serial Monitor:

COM6
Send
x = 1 y = 2
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.

※ OUR MESSAGES