Diese Seite ist auch in 2 anderen Sprachen verfügbar.
Sprache wechseln  

-=

[Compound Operators]

Beschreibung

Dies ist eine praktische Abkürzung, um eine Konstante oder eine Variable von einer Variablen abzuziehen.

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

x = 20;
x -= 2; // x enthält jetzt 18

Siehe auch