Program in C#:
short a, b;
a = 10;
b = 10;
a = a + b; // Error : Cannot implicitly convert type 'int' to 'short'.
// we can also write this code by using Arithmetic Assignment Operator as given below
a += b; // But this is running successfully, why?
Console.Write(a);
This is because += is implemented as an overloaded function (one of which is a short, and the compiler chooses the most specific overload). For the expression (a + b), the compiler widens the result to an int by default before assigning.
There are two questions here. The first is "why is short plus short result in int?"
Well, suppose short plus short was short and see what happens:
And the average is, of course, -9845 if this calculation is done in shorts. The sum is larger than the largest possible short, so it wraps around to negative, and then you divide the negative number.
In a world where integer arithmetic wraps around it is much more sensible to do all the calculations in int, a type which is likely to have enough range for typical calculations to not overflow.
The second question is:
The question has an incorrect premise; the third line above is wrong. The C# specification states in section 7.17.2
The compiler inserts the cast on your behalf. The correct reasoning is:
If it did not insert the cast for you then it would be impossible to use compound assignment on many types.
This happens because int is the smallest signed type for which
+
is defined. Anything smaller is first promoted to int. The+=
operator is defined with respect to+
, but with a special-case rule for handling results that don't fit the target.You have to use:
As to the difference between the behaviours of assignment and addition assignment, I imagine it has something to do with this (from msdn)
However, it's a bit vague, so mabye someone with a deeper understanding can comment.
Well, the
+=
operator says you'll be increasing the value ofa
with a short, while=
says you'll overwrite the value, with the result of an operation. The operationa + b
yields an int, not knowing that it can do otherwise, and you're trying to assign that int to a short.