vote up 2 vote down star

The following snippet of C# code:

  int i = 1;
  string result = String.Format("{0},{1},{2}", i++, i++, i++);
  Console.WriteLine(result);

writes out: 1,2,3

Before I tried this in the compiler I was expecting the assignments to take place and then the evaluations, so my expected output was: 1,1,1

So my question is: Does this "pattern" (is it called a pattern?) of assign and then evaluate each parameter have a name?

EDIT: I'm referring to the pattern of evaluating and assigning the parameters to the String.Format() function. Not the incrementing of i.

(I may be incorrectly using the word evaluate in the question above because if the parameter was say (i + j) then we know that it would be evaluated before it was assigned. When using the word evaluate in that context I'm referring to the incrementing of i.)

flag

73% accept rate
As I'm a former C++ programmer that code makes me cringe. Multiple postincrements in C/C++ have "undefined behaviour" (i.e. it's an error, but the compiler won't tell you so.) It's legal in C# and Java will always output "1,2,3" but your C++ programmer colleagues will hate it. – finnw Oct 2 '08 at 22:23
Since there are 3 separate expressions, I don't think it's an illegal case of using multiple post increments. – dlamblin Oct 2 '08 at 23:21

2 Answers

vote up 3 vote down check

The order of evaluation of arguments is strictly left-to-right in C#. When you evaluate the expression i++, what happens is the value of i is calculated and pushed, then the value of i is incremented.

The ++ operator on System.Int32 is effectively a function with the special name ++ and the special syntax of calling it by writing a reference to a variable and then the characters ++.

So in effect, what you wrote is

// assume this function is defined:
int Inc(ref int i)
{
  var old = i;
  i = i + 1;
  return old;
}

...
int i = 1;
string result = String.Format("{0},{1},{2}", Inc(ref i), Inc(ref i), Inc(ref i));
Console.WriteLine(result);
...

Since arguments are evaluated left-to-right, Inc(ref i) is called 3 times, each time incrementing i after passing the current value of i to String.Format(...). This is exactly what happens in your code, as well.

link|flag
This doesn't actually answer the question (i.e. does this have a name) but it's a great answer so I've accepted it. – Guy Oct 3 '08 at 2:47
"Order of evaluation" and "operator overloading" are the names of the two concepts I described. – Jacob Oct 3 '08 at 17:55
vote up 0 vote down

The arguments of a function are evaluated left-to-right in C#. This is not the case in C/C++, where the standard says the order of evaluation is undefined.

link|flag

Your Answer

Get an OpenID
or

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