Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
407 views

Java: += equivalence

Is: x -= y; equivalent to: x = x - y;
7
votes
3answers
1k views

Why would i+=l compile, where i is int and l is long?

I spotted Java += operator (good question :)), but it had a part that I don't quite understand. Borrowing from that question: int i = 5; long l = 8; Then i = i + l; will not compile but i += ...
2
votes
3answers
178 views

using print() with compound operators in python

The following code doesn't work in python x = 11 print(x += 5) while this code does x = 11 x += 5 print(x) why is that?