Assignment Operators in Java

The assignment operators in Java are
We know how to use =

The remaining Operators are shortcut to use. See below examples to clear understanding.
X = X + Y —> X += Y

X = X * Y —> X *= Y

X = X / Y —> X /= Y

X = X % Y —> X %= Y

Post a Comment

0 Comments