Beschreibung
Dies ist eine praktische Abkürzung, um die Division einer Variablen mit einer anderen Konstante oder Variablen durchzuführen.
Syntax
x /= y; // Äquivalent zum Ausdruck x = x / y
Parameter
x
: Variable. Erlaubte Datentypen: int
, float
, double
, byte
, short
, long
.
y
: nicht null Variable oder Konstante. Erlaubte Datentypen: int
, float
, double
, byte
, short
, long
.