Possible Duplicates:
Preincrement faster than postincrement in C++ - true? If yes, why is it?
Is there a performance difference between i++ and ++i in C++?
I got told that when using the STL and it's iterators, I should always use ++iter
instead of iter++
.
I quote:
Because it can only be faster, never slower
Is this true?