
Prefer Prefix Operators to Postfix Ones for Non-Fundamental Types
Postfix operators, namely ++ and –, are less efficient than their prefix counterparts because the compiler usually creates a temporary copy of the object before applying the operator to an object. When using fundamental types such as int or char, most compilers can optimize the code and eliminate the performance