+ 1
what dose this Sign mean in Java Sign +=
3 Réponses
+ 5
I'll give you an example:
X += Y
is basically same as:
X =X+Y
It is a shortcut to add two values.
+ 3
it is addition assignment operator...
in which we can add a variable to the given variable and assign it to the same variable...
x+=y
is. equivalent to
x=x+y