I've seen them both being used in numerous pieces of C# code, and I'd like to know when to use i++ or ++i (i being a number variable like int, float, double, etc). Anyone who knows this?
|
|
|||||||||||||||||||||
|
|
Oddly it looks like the other two answers don't spell it out, and it's definitely worth saying:
They are Pre-increment, post-increment operators. In both cases the variable is incremented, but if you were to take the value of both expressions in exactly the same cases, the result will differ. |
|||||||||||||||||||||
|
|
The typical answer to this question, unfortunately posted here already, is that one does the increment "before" remaining operations and the other does the increment "after" remaining operations. Though that intuitively gets the idea across, that statement is on the face of it completely wrong. The sequence of events in time is extremely well-defined in C#, and it is emphatically not the case that the prefix and postfix versions of ++ do things in a different order with respect to other operations. It is unsurprising that you'll see a lot of wrong answers to this question. A great many "teach yourself C#" books also get it wrong. Also, the way C# does it is different than how C does it. Many people reason as though C# and C are the same language; they are not. The design of the increment and decrement operators in C# in my opinion avoids the design flaws of these operators in C. There are two questions that must be answered to determine what exactly the operation of prefix and postfix ++ are in C#. The first question is what is the result? and the second question is when does the side effect of the increment take place? It is not obvious what the answer to either question is, but it is actually quite simple once you see it. Let me spell out for you precisely what x++ and ++x do for a variable x. For the prefix form:
For the postfix form:
Some things to notice: First, the order of events in time is exactly the same in both cases. Again, it is absolutely not the case that the order of events in time changes between prefix and postfix. It is entirely false to say that the evaluation happens before other evaluations or after other evaluations. The evaluations happen in exactly the same order in both cases. The only difference is the last step - whether the result is the temporary copy of the original value, or the new value. You can easily demonstrate this:
People will try to tell you that the increment of Second, it is not the case that the value of the prefix version is the new value of x. It is the value that was stored in x. x is not read again. x could be volatile and changing on another thread; the value returned by x++ is not the current value of x, it is what x was assigned, and that could be different. It is surprisingly common for people to get very confused about precedence, associativity, and the order in which side effects are executed, I suspect mostly because it is so confusing in C. C# has been carefully designed to be less confusing in all these regards. For some additional analysis of these issues, including me further demonstrating the falsity of the idea that prefix and postfix operations "move stuff around in time" see: http://blogs.msdn.com/b/ericlippert/archive/2009/08/10/precedence-vs-order-redux.aspx which led to this SO question: int[] arr={0}; int value = arr[arr[0]++]; Value = 1? You might also be interested in my previous articles on the subject: http://blogs.msdn.com/b/ericlippert/archive/2008/05/23/precedence-vs-associativity-vs-order.aspx and http://blogs.msdn.com/b/ericlippert/archive/2007/08/14/c-and-the-pit-of-despair.aspx and an interesting case where C makes it hard to reason about correctness: http://blogs.msdn.com/b/ericlippert/archive/2005/04/28/bad-recursion-revisited.aspx Also, we run into similar subtle issues when considering other operations that have side effects, such as chained simple assignments: And here's an interesting post on why the increment operators result in values in C# rather than in variables: |
|||||||||||||||||||||
|
|
If you have:
then But if you have:
then Note as Eric points out, the increment occurs at the same time in both cases, but it's what value is given as the result that differs (thanks Eric!). Generally, I like to use
Or, if I just need to increment a variable, I like to use:
Normally, one way or the other doesn't have much significance and comes down to coding style, but if you are using the operators inside other assignments (like in my original examples), it's important to be aware of potential side effects. |
|||||||||||||||||||||
|
|
The way the operator works is that it gets incremented at the same time, but if it is before a varable, the expression will evaluate with the incremented/decremented variable:
If it is after the variable the current statement will get executed with the original variable, as if it had not yet been incremented/decremented:
I agree with dcp in using pre-increment/decrement (++x) unless necessary. Really the only time I use the post-increment/decrement is in while loops or loops of that sort. These loops are the same:
or
You can also do this while indexing arrays and such:
Etc, etc... |
|||||||||
|
Does this answer your question ? |
|||||||||||||||||||||
|
|
Just for the record, in C++, if you can use either (i.e.) you don't care about the ordering of operations (you just want to increment or decrement and use it later) the prefix operator is more efficient since it doesn't have to create a temporary copy of the object. Unfortunately, most people use posfix (var++) instead of prefix (++var), just because that is what we learned initially. (I was asked about this in an interview). Not sure if this is true in C#, but I assume it would be. |
|||
|
|
After debating post and preincrement with Kieren, I realized that most of the demonstrations of the differences between the "simplified" explanation and Eric's explanation are hard to read. So here is a brain-dead simple program that shows the side effects without nested array accesses:
If nothing else, the difference is important to pay attention to when overloading increment. |
|||
|
|