Comme tout le monde l'a déjà dit, le += a un cast implicite. Pour illustrer cela, je vais utiliser une application que j'ai écrite il y a quelque temps et qui est parfaite pour ce type de questions. Il s'agit d'un désassembleur en ligne qui vous permet de vérifier le bytecode réel qui est produit : http://javabytes.herokuapp.com/
Et un tableau de leurs significations : http://en.wikipedia.org/wiki/Java_bytecode_instruction_listings
Examinons donc le bytecode d'un simple code Java :
int i = 5;
long j = 8;
i += j;
Code désassemblé. Mes commentaires auront un // devant.
Code:
0: iconst_5 //load int 5 onto stack
1: istore_0 //store int value into variable 0 (we called it i)
2: ldc2_w #2; //long 8l
//load long 8 value onto stack. Note the long 8l above
//is not my comment but how the disassembled code displays
//the value long 8 being used with the ldc2_w instruction
5: lstore_1 //store long value into variable 1 (we called it j)
6: iload_0 //load int value from variable 0
7: i2l //convert int into a long. At this point we have 5 long
8: lload_1 //load value from variable 1
9: ladd //add the two values together. We are adding two longs
//so it's no problem
10: l2i //THIS IS THE MAGIC. This converts the sum back to an int
11: istore_0 //store in variable 0 (we called it i)