[MECpp]Item-6 Distinguish Between Prefix and Postfix Forms of Increment and Decrement Operators
· โ 3 min read
The prefix and postfix forms of increment and decrement operators return different types: prefix forms return a reference, while postfix forms return a const object. For efficiency, prefer prefix forms unless the behavior of postfix ones is necessary. To guarantee consistency, implement postfix operators in terms of the prefix operators.