SyntaxFix
Write A Post
Hire A Developer
Questions
Yes,
basically when we write
i += l;
the compiler converts this to
i = (int)(i + l);
I just checked the .class file code.
.class
Really a good thing to know