vote up 19 vote down star
2

Have you ever tried this before?

static void Main(string[] args)
{
    int x = 10;
    x = x++;
    Console.WriteLine(x);
}

Output: 10.

but for

static void Main(string[] args)
{
    int x = 10;
    x++;
    Console.WriteLine(x);
}

Output: 11.

Could anyone explain why this?

flag

53% accept rate
1  
Wow - I don't think I've ever seen as many incorrect answers to question here... – Jon Skeet Oct 22 '08 at 14:48
And the moral of the story is to avoid writing that into production code :) – Robert Paulson Oct 22 '08 at 19:31
I totally agree with you, we should avoid writing this pieces of code into production code as Jon said, many incorrect answers, this may cause many problems during any project. – Ahmed Oct 23 '08 at 10:18

12 Answers

vote up 33 vote down check

X++ will increment the value, but then return its old value.

So in this case:

static void Main(string[] args)
{
    int x = 10;
    x = x++;
    Console.WriteLine(x);
}

You have X at 11 just for a moment, then it gets back to 10 because 10 is the return value of (x++).

You could instead do this for the same result:

static int plusplus(ref int x)
{
  int xOld = x;
  x++;
  return xOld;
}

static void Main(string[] args)
{
    int x = 10;
    x = plusplus(x);
    Console.WriteLine(x);
}

It is also worth mentioning that you would have your expected result of 11 if you would have done:

static void Main(string[] args)
{
    int x = 10;
    x = ++x;
    Console.WriteLine(x);
}
link|flag
x = ++x seems pretty useless, i don't particularly see a reason for either of those constructs... just x++ or ++x .. or what about x = x + ((Ceiling (Abs(x) + 1))/(Ceiling (Abs(x) + 1))) that should work too – stephenbayer Oct 22 '08 at 15:47
agreed, but I think the question was just asking why it reacts like that. – Brian R. Bondy Oct 22 '08 at 15:53
First phrase is wrong, x++ it will first return the value and afterwards increment - whereas ++x will first increment, than return the value. – BeowulfOF Dec 15 '08 at 11:38
The first phrase is not wrong. – Brian R. Bondy Jan 18 '09 at 15:40
vote up 0 vote down

Putting the increment operator after the variable means that the increment and assignment happens after the expression is evaluated... so The original statement x = x++; translates to 1. Evaluate x and store value in tyransient memory ... Now execute code called for by ++ operator .... (steps 2 & 3) 2. Increment value of x (in transient memory) 3. Assign Incremented value to x's storage location ... Now, continue with rest of the line's execution, to the left, there's an = sign... 5. So assign value stored in Step 1 (unincremented value) to expression on left of = sign... which is x

link|flag
vote up 3 vote down

You can think of it like this:

int x = 10;

X is a container, and contains a value, 10.

x = x++;

This can be broken down to:

1) increment the value contained in x 
	now x contains 11

2) return the value that was contained in x before it was incremented
	that is 10

3) assign that value to x
	now, x contains 10

Now, print the value contained in x

Console.WriteLine(x);

And, unsurprisingly, it prints out 10.

link|flag
vote up 0 vote down

Try calling ++x and see if that works.

link|flag
vote up -2 vote down

As a standalone statement, x++; is both an increment and assignment. It seems that there is some confusions as to what happens when. If we have

int x = 10;
int y = (x++) + 2;

We will get x = 11 and y = 12. The current value of x is assigned, and then the increment and reassignment of x takes place. So, when using the same variable,

int x = 10; // Create a variable x, and assign an initial value of 10.
x = x++;    // First, assign the current value of x to x. (x = x)
            // Second, increment x by one. (x++ - first part)
            // Third, assign the new value of x to x. (x++ - second part)

Any way you look at it, the new value of x is 11.

I was completely wrong on that one.

link|flag
No, the correct sequence is "determine the current value of x and remember it; increment x; assign the remembered value to x" - hence the final value of x is 10. – Jon Skeet Oct 22 '08 at 14:46
The final value is 10. – Ahmed Oct 22 '08 at 14:48
Wow. It is 10. I'm editing my own garbage. – Jarrett Meyer Oct 22 '08 at 15:40
vote up -1 vote down

The result of the assignment

x = x++;

is undefined in C and C++, and I would guess the same with C# too.

So, the actual sequence of operations that occurs depends on how the compiler decides to implements it, there's no guarantee whether the assignment or the increment will occur first. (this is well defined in C#, as Jon Skeet has pointed out in the comments. Though I now feel this answer is of much less value now, I'm keeping this post undeleted for the OP's question and its answer in the comments.)

However, in this case, it appears the sequence of operations that happens is:

  1. the old value (10) of x is saved
  2. x is incremented for the ++ part
  3. the old value is now assigned to x for the assignment

In this way, though the increment occurs, it is overtaken by the assignment with old value, thus keeping x at 10.

HTH

link|flag
It's very well-defined in C#, which is generally a saner language than C or C++ when it comes to this kind of thing. – Jon Skeet Oct 22 '08 at 14:42
3. the old value is now assigned to x for the assignment Why the old value, not the value afetr it's incremented? – Ahmed Oct 22 '08 at 14:43
Because the value of a post-increment expression is the result before it was incremented. – Jon Skeet Oct 22 '08 at 14:49
vote up 4 vote down
x++;

does the following:

int returnValue = x;
x = x+1;
return returnValue;

As you can see, the original value is saved, x is incremented, and then the original value is returned.

What this ends up doing is saving the value 10 somewhere, setting x equal to 11, and then returning 10, which causes x to be set back to 10. Note that x does actually become 11 for a few cycles (assuming no compiler optimization).

link|flag
vote up 1 vote down

By definition, x++, returns the value of x and then increments x.

http://blogs.msdn.com/lucabol/archive/2004/08/31/223580.aspx

link|flag
+1 for the link, although your first sentence doesn't really explain why x is still 10 in the first result. – matt b Oct 22 '08 at 14:38
vote up 3 vote down

This isn't answering the question directly, but why in the world would anyone use

x = x++;

?

It totally defeats the purpose of the post-increment/pre-increment operator.

link|flag
May be, no one can use x = x++, but you may face this static void Main(string[] args) { int x = 10; int y = x++; Console.WriteLine(y); } Output: 10. so, why? – Ahmed Oct 22 '08 at 14:56
vote up 11 vote down

x = ++x

would equal 11.

link|flag
vote up 8 vote down

The behaviour of x++ is to increment x but return the value before the increment. Its called a post increment for this reason.

So x = x++; simply put will increment x first, then assign the original value of x to x.

link|flag
vote up 42 vote down

In the assignment x = x++ you first extract the old value of x to use in evaluating the right-hand side expression, in this case 'x'; then, you increment x by 1. Last, you assign the results of the expression evaluation (10) to x via the assignment statement.

Perhaps an equivalent code would make the predicament clear:

var tmp = x;
x++;
x = tmp;

This is the equivalent of your x = x++ code in C#.

link|flag
That sounds strange to me... my impression is that the change should've been applied already by the time x hits Console.Writeline – Jon Limjap Oct 22 '08 at 14:41
The problem is the difference between pre-fix and -post-fix. x++ and ++x behave differently. – jjnguy Oct 22 '08 at 14:44
The change was applied but lost in the assignment. If you either use y = x++ instead or if you do x = ++x; the first example will output 11 as well. – Vinko Vrsalovic Oct 22 '08 at 14:44
x is incremented, then set back to 10 (which is the evaluated value of x++) - it's not that it's delayed until after Console.WriteLine. – Jon Skeet Oct 22 '08 at 14:44
Jon, you're really doing the Work Of The Lord in this thread. ;-) SO needs a badge to reward this kind of thorough commenting. I believe your comments in this thread are more valuable than my meagre reply. – Konrad Rudolph Oct 22 '08 at 14:51
show 3 more comments

Your Answer

Get an OpenID
or

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