Is there a difference in ++i and i++ in a for loop? Is it simply a syntax thing?
|
7
|
|
||||||||||
|
|
|
a++ is known as postfix. add 1 to a, returns the old value. ++a is known as prefix. add 1 to a, returns the new value. C#:
Output:
So it depends how you use it. |
||||||
|
|
|
Pre-increment ++i increments the value of i and evaluates to the new incremented value.
Post-increment i++ increments the value of i and evaluates to the original non-incremented value.
In C++, the pre-increment is usually prefered where you can use either. This is because if you use post-increment, it can require the compiler to have to generate code that creates an extra temporary variable. This is because both the previous and new values of the variable being incremented need to be held somewhere because they may be needed elsewhere in the expression being evaluated. So, in C++ at least, there can be a performance difference which guides your choice of which to use. This is mainly only a problem when the variable being incremented is a user defined type with an overridden ++ operator. For primitive types (int, etc) there's no performance difference. But, it's worth sticking to the pre-increment operator as a guideline unless the post-increment operator is definitely what's required. There's some more discussion here: In C++ if you're using STL, then you may be using for loops with iterators. These mainly have overridden ++ operators, so sticking to pre-increment is a good idea. Compilers get smarter all the time though, and newer ones may be able to perform optimizations that mean there's no performance difference - especially if the type being incremented is defined inline in header file (as STL implementations often are) so that the compiler can see how the method is implemented and can then know what optimizations are safe to perform. Even so, it's probably still worth sticking to pre-increment because loops get executed lots of times and this means a small performance penalty could soon get amplified. In other languages such as C# where the ++ operator can't be overloaded there is no performance difference. Used in a loop to advance the loop variable, the pre and post increment operators are equivalent. |
||||||||||||||||
|
|
|
In c# there is no difference when used in a for loop.
outputs the same thing as
As others have pointed out, when used in general i++ and ++i have a subtle yet significant difference:
i++ reads the value of i then increments it. ++i increments the value of i then reads it. |
||||||||||
|
|
|
Since you ask about the difference in a loop, i guess you mean
In that case, you have no difference in most languages: The loop behaves the same regardless of whether you write The reason why it doesn't matter above is because you don't use the value of
Now, there is a difference, because as others point out, |
||||
|
|
|
As this code shows (see the dissambled MSIL in the comments), the C# 3 compiler makes no distinction between i++ and ++i in a for loop. If the value of i++ or ++i were being taken, there would definitely be a difference (this was compiled in Visutal Studio 2008 / Release Build):
|
||
|
|
|
|
One (++i) is preincrement, one (i++) is postincrement. The difference is in what value is immediately returned from the expression.
Edit: Woops, entirely ignored the loop side of things. There's no actual difference in for loops when it's the 'step' portion (for(...; ...; )), but it can come into play in other cases. |
||||||||
|
|
|
Is there a performance difference between i++ and ++i in C? From StackOverFlow |
||
|
|
|
|
Yes, there is. The difference is in the return value. The return value of "++i" will be the value after incrementing i. The return of "i++" will be the value before incrementing. This means that code that looks like the following:
Therefore, a would be 2, and b and c would each be 1. I could rewrite the code like this:
|
||||
|
|
|
There is no actual difference in both cases ' But there is a difference when you use it in an expression, for example:
|
||
|
|
|
|
As @Jon B says, there is no difference in a for loop. But in a
|
||
|
|
|
There can be a difference for loops. This is the practical application of post/pre-increment.
While the first one counts to 11 and loops 11 times, the second does not. Mostly this is rather used in a simple while(x-- > 0 ) ; - - Loop to iterate for example all elements of an array (exempting foreach-constructs here). |
||
|
|
|
|
There is more to ++i and i++ than loops and performance differences. ++i returns a l-value and i++ returns an r-value. Based on this, there are many things you can do to ( ++i ) but not to ( i++ ).
|
||
|
|
|
|
Here is a Java-Sample and the Byte-Code, post- and preIncrement show no difference in Bytecode:
} And now for the byte-code (javap -private -c PreOrPostIncrement):
|
||
|
|
|
|
In javascript due to the following i++ may be better to use:
While arrays (I think all) and some other functions and calls use 0 as a starting point you would have to set i to -1 to make the loop work with the array when using ++i. When using i++ the following value will use the increased value. You could say i++ is the way humans count, cause you can start with a 0. |
||
|
|
|
|
Thanks guys! A great round of answers by everyone and all the different implications covered. My main language is C# so I am interested in the way the CLR interprets the two approaches (which a poster has talked about). Thanks again. |
||
|
|
|
|
For Also, in |
|||
|
