Until today I thought that for example:

i += j;

is just a shortcut for:

i = i + j;

But what if we try this:

int i = 5;
long j = 8;

Then i = i + j; will not compile but i += j; will compile fine.

Does it mean that in fact i += j; is a shortcut for something like this i = (type of i) (i + j)?

I've tried googling for it but couldn't find anything relevant.

link|improve this question
92  
In my two years of lurking in StackOverflow, that was the nicest question so far. Congratulations, sir, you won my award. – baba Jan 3 at 10:12
13  
The sad part is this question was asked within the last couple of weeks, but I can't find it here, or on Google. – Dave Newton Jan 3 at 10:19
5  
(Not the one I'm looking for, but here's one.) stackoverflow.com/questions/608721/… – Dave Newton Jan 3 at 10:28
1  
7  
For one thing, it is not a duplicate, they are exact opposites actually. For another, even if it was duplicate, given the trouble even an experienced user had finding it a new user certainly deserves to be congratulated. – Miserable Variable Jan 4 at 1:32
show 4 more comments
feedback

7 Answers

up vote 304 down vote accepted

As always with these questions, the JLS holds the answer. In this case ยง15.26.2 Compound Assignment Operators. An extract:

A compound assignment expression of the form E1 op= E2 is equivalent to E1 = (T)((E1) op (E2)), where T is the type of E1, except that E1 is evaluated only once.

And an example:

For example, the following code is correct:

short x = 3;
x += 4.6;

and results in x having the value 7 because it is equivalent to:

short x = 3;
x = (short)(x + 4.6);

In other words, your assumption is correct.

link|improve this answer
1  
the best answer – Shawn Jan 11 at 18:09
feedback

A good example of this casting is using *= or /=

byte b = 10;
b *= 5.7;
System.out.println(b); // prints 57

or

byte b = 100;
b /= 2.5;
System.out.println(b); // prints 40

or

char ch = '0';
ch *= 1.1;
System.out.println(ch); // prints '4'

or

char ch = 'A';
ch *= 1.5;
System.out.println(ch); // prints 'a'
link|improve this answer
2  
Hmm, that's an even better example than the JLS one... – Lukas Eder Jan 3 at 10:22
@LukasEder cheers. ;) – Peter Lawrey Jan 3 at 10:23
Yeah, you should have the JLS guys take that example from you! :) ... ok, now you're going mad on those examples ;-) – Lukas Eder Jan 3 at 10:26
2  
@LukasEder going mad, is a polite way of putting it. ;) – Peter Lawrey Jan 3 at 10:38
5  
+1 for *= on a char. – fluffy Jan 3 at 21:44
feedback

Very good question. The Java Language specification confirms your suggestion.

For example, the following code is correct:

short x = 3;
x += 4.6;

and results in x having the value 7 because it is equivalent to:

short x = 3;
x = (short)(x + 4.6);
link|improve this answer
feedback

Yes,

basically when we are writing

i+=l; 

compiler is converting this to

  i = (int)(i + l);

I just checked the .class file code.

really a good thing to know

link|improve this answer
feedback

you need to cast from long to int explicitly in case of i = i + l then it will compile and give correct output. like

i = i + (int)l;

or

i = (int)((long)i + l); // this is what happens in case of += , dont need (long) casting since upper casting is done implicitly.

but in case of += it just works fine because the operator implicitly does the type casting from type of right variable to type of left variable so need not cast explicitly.

link|improve this answer
2  
In this case, the "implicit cast" could be lossy. In reality, as @LukasEder states in his answer, the cast to int is performed after the +. The compiler would (should?) throw a warning if it really did cast the long to int. – Romain Jan 3 at 10:17
feedback

Please refer below link http://www.janeg.ca/scjp/oper/assignment.html

There it is mentioned that "all operators of the form op = cast their result to the type of the left-operand".

link|improve this answer
feedback

The problem here is of type casting.

When you add int and long,

  1. The int object is casted to long & both are added and you get long object.
  2. but long object cannot be implicitly casted to int. So, you have to that explicitly.

But += is coded in such a way that it does type casting. i=(int)(i+m)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.