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...
i++would needlessly store a temporary copy ofi. It isn't, so it doesn't matter, but that's why++iwas accepted as the best practice. – James McLaughlin Feb 19 '12 at 1:19++xeverywhere else for the code samples in their books to look consistent. – dasblinkenlight Feb 19 '12 at 1:20