I've misplaced += with =+ one to many times, and I think I keep forgetting because I don't know the difference between these two, only that one gives me the value I expect it to, and the other does not.
Why is this?
|
I've misplaced += with =+ one to many times, and I think I keep forgetting because I don't know the difference between these two, only that one gives me the value I expect it to, and the other does not. Why is this? |
|||
|
|
|
Examples:
|
|||
|
|
|
|
|||
|
|
|
|
||||
|
|
It's simple.x+=1 is x = x + 1 while x=+1 will make x have the value of one(positive) |
|||
|
|
is the same as
and
is wrong but could be interpreted as
|
||||
|
|
|
Some historical perspective: Java inherited the
was equivalent to
(except that This caused confusion, because
would decrement x rather than assigning the value -1 to it, so the syntax was changed (avoiding the horror of having to surround operators with blanks: (I used Fortunately, Java was invented long after C changed to the current syntax, so it never had this particular problem. |
||||
|
|