When does ++ not produce the same results as +1? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T10:23:10Z http://stackoverflow.com/feeds/question/114419 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1 22 When does ++ not produce the same results as +1? Richard Dorman 2008-09-22T11:55:40Z 2008-12-29T01:54:08Z <p>The following two C# code snippets produce different results (assuming the variable level is used both before and after the recursive call). Why?</p> <pre><code>public DoStuff(int level) { // ... DoStuff(level++); // ... } </code></pre> <p>,</p> <pre><code>public DoStuff(int level) { // ... DoStuff(level+1); // ... } </code></pre> <p>After reading some of the responses below I thought it would be worthwhile posting the stack traces for level++, ++level and level+1 to highlight how deceiving this problem is.</p> <p>I've simplified them for this post. The recursive call sequence starts with DoStuff(1). </p> <p>// level++</p> <pre><code>DoStuff(int level = 1) DoStuff(int level = 2) DoStuff(int level = 2) DoStuff(int level = 2) </code></pre> <p>// ++level</p> <pre><code>DoStuff(int level = 4) DoStuff(int level = 4) DoStuff(int level = 3) DoStuff(int level = 2) </code></pre> <p>// level+1</p> <pre><code>DoStuff(int level = 4) DoStuff(int level = 3) DoStuff(int level = 2) DoStuff(int level = 1) </code></pre> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114427#114427 27 Answer by workmad3 for When does ++ not produce the same results as +1? workmad3 2008-09-22T11:58:07Z 2008-09-22T12:05:41Z <p><strong>level++</strong> will pass <strong>level</strong> into <strong>DoStuff</strong> and then increment <strong>level</strong> for use in the rest of the function. This could be a fairly nasty bug as the recursion will never end (from what is shown <strong>DoStuff</strong> is always being passed the same value). Perhaps <strong>++level</strong> is meant instead, as this is the opposite of <strong>level++</strong> (increments level and passes the incremented value into <strong>DoStuff</strong>)?</p> <p><strong>level+1</strong> will pass <strong>level+1</strong> into <strong>DoStuff</strong> and leave <strong>level</strong> unchanged for the rest of the function.</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114435#114435 2 Answer by PintSizedCat for When does ++ not produce the same results as +1? PintSizedCat 2008-09-22T11:58:39Z 2008-09-22T11:58:39Z <p>The first is using the value in level and THEN incrmenting it.</p> <p>The latter is using level+1 as a passed variable.</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114436#114436 0 Answer by Steve Moyer for When does ++ not produce the same results as +1? Steve Moyer 2008-09-22T11:58:51Z 2008-09-22T11:58:51Z <p>The first code snippet uses the post-operation increment operator, so the call is made as DoStuff(level);. If you want to use an increment operator here, use DoStuff(++level);.</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114441#114441 1 Answer by Markus Schnell for When does ++ not produce the same results as +1? Markus Schnell 2008-09-22T11:59:56Z 2008-09-22T11:59:56Z <p><code>level++</code> returns the current value of <code>level</code>, then increments <code>level</code>. <code>level+1</code> doesn't change <code>level</code> at all, but <code>DoStuff</code> is called with the value of <code>(level + 1)</code>.</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114446#114446 27 Answer by Frederik Slijkerman for When does ++ not produce the same results as +1? Frederik Slijkerman 2008-09-22T12:00:51Z 2008-09-22T15:37:18Z <p>Because the first example is really equivalent to:</p> <pre><code>public DoStuff(int level) { // ... int temp = level; level = level + 1; DoStuff(temp); // ... } </code></pre> <p>Note that you can also write ++level; that would be equivalent to:</p> <pre><code>public DoStuff(int level) { // ... level = level + 1; DoStuff(level); // ... } </code></pre> <p>It's best not to overuse the ++ and -- operators in my opinion; it quickly gets confusing and/or undefined what's really happening, and modern C++ compilers don't generate more efficient code with these operators anyway.</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114452#114452 0 Answer by itsmatt for When does ++ not produce the same results as +1? itsmatt 2008-09-22T12:02:38Z 2008-09-22T12:02:38Z <p>level+1 sends whatever level+1 is to the function. level++ sends level to the function and then increments it. </p> <p>You could do ++level and that would likely give you the results you want.</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114453#114453 0 Answer by paul for When does ++ not produce the same results as +1? paul 2008-09-22T12:02:49Z 2008-09-22T12:02:49Z <p>The first example uses the value of 'index', increments the value and <strong>updates</strong> 'index'.</p> <p>The second example uses the value of 'index' plus 1 but does not change the content of 'index'.</p> <p>So, depending on what you are wanting to do here, there could be some surprises in store!</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114458#114458 -2 Answer by rep_movsd for When does ++ not produce the same results as +1? rep_movsd 2008-09-22T12:05:08Z 2008-09-22T12:05:08Z <p>As far as my experience goes, the parameter expression is evaluated first, and gets a value of level. The variable itself is incremented before the function is called, because the compiler doesnt care whether you are using the expression as a parameter or otherwise... All it knows is that it should increment the value and get the old value as the result of the expression.</p> <p>However in my opinion, code like this is really sloppy, since by trying to be clever, it makes you have to think twice about what is really happening.</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114468#114468 11 Answer by Orion Adrian for When does ++ not produce the same results as +1? Orion Adrian 2008-09-22T12:08:08Z 2008-09-26T16:39:22Z <p>the return value of <code>level++</code> will be <code>level</code> and <code>therefore</code> pass <code>level</code> into <code>DoStuff</code>. This could be a fairly nasty bug as the recursion will never end (from what is shown <code>DoStuff</code> is always being passed with the same value). Perhaps <code>++level</code> or <code>level + 1</code> is meant instead?</p> <p><code>level + 1</code> will pass <code>level + 1</code> into <code>DoStuff</code> and leave <code>level</code> unchanged for the rest of the function.</p> <p><hr /></p> <p>The post-increment operator (variable++) is precisely equivalent to the function</p> <pre><code>int post_increment(ref int value) { int temp = value; value = value + 1 return temp; } </code></pre> <p>while the pre-increment operator (++variable) is precisely equivalent to the function</p> <pre><code>int pre_increment(ref int value) { value = value + 1; return value; } </code></pre> <p><hr /></p> <p>Therefore, if you expand the operator inline into the code, the operators are equivalent to:</p> <pre><code>DoStuff(a + 1) int temp = a + 1; DoStuff(temp); </code></pre> <p><hr /></p> <pre><code>DoStuff(++a) a = a + 1; DoStuff(a); </code></pre> <p><hr /></p> <pre><code>DoStuff(a++); int temp = a; a = a + 1; DoStuff(temp); </code></pre> <p><hr /></p> <p>It is important to note that post-increment is <strong>not</strong> equivalent to:</p> <pre><code>DoStuff(a); a = a + 1; </code></pre> <p><hr /></p> <p>and looking at the stack traces for the various behavior:</p> <pre><code>// level++ DoStuff(int level = 1) //original call DoStuff(int level = 1) //level = 2 after call DoStuff(int level = 1) //level = 2 after call DoStuff(int level = 1) //level = 2 after call // ++level DoStuff(int level = 1) //original call DoStuff(int level = 2) //level = 2 after call DoStuff(int level = 3) //level = 3 after call DoStuff(int level = 4) //level = 4 after call // level + 1 DoStuff(int level = 1) //original call DoStuff(int level = 2) //level = 1 after call DoStuff(int level = 3) //level = 2 after call DoStuff(int level = 4) //level = 3 after call </code></pre> <p><hr /></p> <p>Additionally, as a point of style, one shouldn't increment a value unless the intention is to use the incremented value (a specific version of the rule, "don't assign a value to a variable unless you plan on using that value"). If the value <code>i + 1</code> is never used again, then the preferred usage should be <code>DoStuff(i + 1)</code> and not <code>DoStuff(++i)</code>.</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114471#114471 41 Answer by Matt for When does ++ not produce the same results as +1? Matt 2008-09-22T12:08:36Z 2008-09-22T12:08:36Z <p>To clarify all the other responses:</p> <p>+++++++++++++++++++++</p> <pre><code>DoStuff(a++); </code></pre> <p>Is equivalent to:</p> <pre><code>DoStuff(a); a = a + 1; </code></pre> <p>+++++++++++++++++++++</p> <pre><code>DoStuff(++a); </code></pre> <p>Is equivalent to:</p> <pre><code>a = a + 1; DoStuff(a); </code></pre> <p>+++++++++++++++++++++</p> <pre><code>DoStuff(a + 1); </code></pre> <p>Is equivalent to:</p> <pre><code>b = a + 1; DoStuff(b); </code></pre> <p>+++++++++++++++++++++</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114482#114482 1 Answer by Wes P for When does ++ not produce the same results as +1? Wes P 2008-09-22T12:11:16Z 2008-09-22T14:01:31Z <pre><code>public DoStuff(int level) { // DoStuff(level); DoStuff(level++); // level = level + 1; // here, level's value is 1 greater than when it came in } </code></pre> <p>It actually increments the value of level.</p> <pre><code>public DoStuff(int level) { // int iTmp = level + 1; // DoStuff(iTmp); DoStuff(level+1); // here, level's value hasn't changed } </code></pre> <p>doesn't actually increment the value of level.</p> <p>Not a huge problem before the function call, but after the function call, the values will be different.</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114487#114487 0 Answer by Chris Ballard for When does ++ not produce the same results as +1? Chris Ballard 2008-09-22T12:13:31Z 2008-09-22T12:13:31Z <p>Whilst it is tempting to rewrite as:</p> <pre><code>DoStuff(++level); </code></pre> <p>I personally think this is less readable than incrementing the variable prior to the method call. As noted by a couple of the answers above, the following would be clearer:</p> <pre><code>level++; DoStuff(level); </code></pre> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114665#114665 0 Answer by christoffer for When does ++ not produce the same results as +1? christoffer 2008-09-22T12:49:42Z 2008-09-22T12:55:22Z <p>When you use a language that allows operator overloading, and '+ &lt;integer&gt;' has been defined to do something other than post- and prefix '++'. </p> <p>Then again, I have only seen such abominations in school projects*, if you encounter that in the wild you probably have a really good, well-documented, reason. </p> <p>[* a stack of integers, if I'm not mistaken. '++' and '--' pushed and popped, while '+' and '-' performed normal arithmetics]</p> http://stackoverflow.com/questions/114419/when-does-not-produce-the-same-results-as-1/114743#114743 1 Answer by TheVillageIdiot for When does ++ not produce the same results as +1? TheVillageIdiot 2008-09-22T13:05:45Z 2008-09-22T13:05:45Z <p>In level++ you are using postfix operator. This operator works after the variable is used. That is after it is put on the stack for the called function, it is incremented. On the other hand level + 1 is simple mathematical expression and it is evaluated and the result is passed to called function. If you want to increment the variable first and then pass it to called function, you can use prefix operator: ++level</p>