+=

Descrição

Essa é uma abreviação conveniente para realizar a adição de uma variável com outra variável ou constante.

Sintaxe

x += y; // equivalente a expressão x = x + y;

Parâmetros

  • x: variável. Tipos de dados permitidos: int, float, double, byte, short, long
  • y: variável ou constante. Tipos de dados permitidos: int, float, double, byte, short, long

Código de Exemplo

void setup() { Serial.begin(9600); int x = 2; x += 4; // x agora contém 6 Serial.print("x = "); Serial.println(x); } void loop() { }

The result on Serial Monitor:

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

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Disclosure: Some links in this section are Amazon affiliate links. If you make a purchase through these links, we may earn a commission at no extra cost to you.
Additionally, some links direct to products from our own brand, DIYables.

※ OUR MESSAGES