Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Difference between i++ and ++i in a loop?
Is there a performance difference between i++ and ++i in C++?
Incrementing in C++ - When to use x++ or ++x?
Why use ++i instead of i++ in cases where the value is not used anywhere else in the statement?

Why in C++ textbooks is there a preference for writing ++x rather than x++ when this occurs in a context where the pre/post nature doesn't matter ?

In general, it seems that actions are given in object,verb order

eg:

foo.size() is the 'object' foo , with 'verb' size

a + b is 'object' a , with verb +

In EXCEL you always select the object , then specify the action (verb).

note : Lotus 1-2-3 did things in verb-object order which caused enormous problems for people who had developed muscle memory in the 123 to XL transition...

share|improve this question
1  
possible duplicate of Difference between i++ and ++i in a loop? and especially this answer Also stackoverflow.com/questions/24901/… – Ben Voigt Feb 19 '12 at 1:17
I wouldn't call it a duplicate since he is asking in general since and not in just loops. – yamikoWebs Feb 19 '12 at 1:18
You should really read a beginner's guide to C++. Analogies to Excel won't help you much. – Don Reba Feb 19 '12 at 1:18
4  
Because if your compiler was really stupid, i++ would needlessly store a temporary copy of i. It isn't, so it doesn't matter, but that's why ++i was accepted as the best practice. – James McLaughlin Feb 19 '12 at 1:19
1  
They do it for consistency: it matters a lot with iterators, so they keep using ++x everywhere else for the code samples in their books to look consistent. – dasblinkenlight Feb 19 '12 at 1:20
show 3 more comments

marked as duplicate by Wooble, Ben Voigt, Mitch Wheat, bernie, dasblinkenlight Feb 19 '12 at 1:20

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 4 down vote accepted

I prefer ++x over x++ because, to me, it emphasizes the increment operation over the name of the variable. It's strictly a matter of preference, but I think it highlights my intention more clearly.

More important is that you choose one or the other and use it consistently. Code that's peppered with ++x and x++ used arbitrarily when their effect is identical is just a recipe for unmaintainability. Sooner or later, someone's going to "fix" it to be consistent, and they'll probably introduce bugs when they change an instance that really does matter.

share|improve this answer

i++ will create a copy of the object i. If i is a complex iterator, this may reduce performance considerably, compared to ++i.

share|improve this answer
That's the historical reason, but it really doesn't apply nowadays. – James McLaughlin Feb 19 '12 at 1:20
There is usually only a performance difference in Debug mode. – Don Reba Feb 19 '12 at 1:20
1  
What about if there are side effects? – rasmus Feb 19 '12 at 1:22

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