+=

Beschreibung

Dies ist eine praktische Abkürzung, um eine Variable mit einer anderen Konstanten oder Variablen zu addieren.

Syntax

x += y; // Äquivalent zum Ausdruck x = x + y

Parameter

  • x: Variable. Erlaubte Datentypen: int, float, double, byte, short, long.
  • y: Variable oder Konstante. Erlaubte Datentypen: int, float, double, byte, short, long.

Beispielcode

void setup() { Serial.begin(9600); int x = 2; x += 4; // x enthält jetzt 6 Serial.print("x = "); Serial.println(x); } void loop() { }

Das ergebnis am seriellen monitor:

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

ARDUINO KAUFEMPFEHLUNG

Arduino UNO R3
Arduino Starter Kit
Bitte Beachten: Dies sind Partnerschaftslinks. Wenn Sie die Komponenten über diese Links Kaufen, können wir eine Provision erhalten, ohne weitere Kosten für Sie. Wir Schätzen es.

※ OUR MESSAGES