show/hide this revision's text 3 Changed postincrement example again.

Because the first example is really equivalent to:

public DoStuff(int level)
{  
  // ...
  int temp = level+ 1;
  DoStuff(level);
  level = templevel + 1;
  DoStuff(temp);
  // ...
}

Note that you can also write ++level; that would be equivalent to:

public DoStuff(int level)
{  
  // ...
  level = level + 1;
  DoStuff(level);
  // ...
}

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.

show/hide this revision's text 2 Changed postincrement example to be more correct.

Because the first example is really equivalent to:

public DoStuff(int level)
{  
  // ...
  DoStuff(level);
  level int temp = level + 1;
  DoStuff(level);
  level = temp;
  // ...
}

Note that you can also write ++level; that would be equivalent to:

public DoStuff(int level)
{  
  // ...
  level = level + 1;
  DoStuff(level);
  // ...
}

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.

show/hide this revision's text 1

Because the first example is really equivalent to:

public DoStuff(int level)
{  
  // ...
  DoStuff(level);
  level = level + 1;
  // ...
}

Note that you can also write ++level; that would be equivalent to:

public DoStuff(int level)
{  
  // ...
  level = level + 1;
  DoStuff(level);
  // ...
}

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.