int x=3, y=4, n=0;
int n = x * y / --x;
This code calculates n
to be 6, but I thought it'd be 4; since --x
is a pre-decrement operator and has higher precedence than *
and /
so it would be 2 * 4 / 2
I assumed it's 2*4
and not 3*4
as x
has already been decremented, so what am I missing here? The same question has been asked here but the answer was PHP-specific.
If we compile this code and then inspect it using ildasm, we get the following instructions (translated using https://en.wikipedia.org/wiki/List_of_CIL_instructions):
This reveals that the expression is evaluated from left to right, even though
--x
precedes*
and/
.This is also documented in the C# language specification (section 7.3 Operators):