Given the following scala code:
var short: Short = 0
short += 1 // error: type mismatch
short += short // error: type mismatch
short += 1.toByte // error: type mismatch
I don't questioning the underlying typing - it's clear that "Short + value == Int".
My questions are:
1. Is there any way at all that the operator can be used?
2. If not, then why is the operator available for use on Short & Byte?
[And by extension *=, |= &=, etc.]
a op= bis syntactic sugar for the expanded form:a = a op b, which explains the type error (Short + Short -> Int). It doesn't explain why the decision was made or what use this construct might -- or might not -- have. (In C# it is perfectly legal to dobyte+=1but notbyte=byte+1, and the behavior is specific in the standard -- there is an implicit cast back to the LHS type in C#). – user166390 Jun 11 '12 at 6:28