Re: Postfix is slower than postfix: how likely?
Seungbeom Kim wrote:
Francis Glassborow wrote:
post fix requires a copy unless you are asking that in the
free-standing case the compiler treats them identically.
It is commonly believed that the postfix operator SHOULD make
a copy, but should it really? It can also return a cheap proxy
that increments the subject upon destruction, in case the
subject is expensive to copy.
[...]
Maybe this could be a standard idiom for implementing postfix
operators? :)
It's a nice idea; I like it a lot. But for iterators, postfix
increment and decrement aren't the only places copying occurs.
The entire STL is based on the premise that iterators (and
functional objects) are cheap to copy. Violate that, and you
will probably have performance problems, regardless of what you
do with postfix increment and decrement.
--
James Kanze GABI Software
Conseils en informatique orient?e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S?mard, 78210 St.-Cyr-l'?cole, France, +33 (0)1 30 23 00 34
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]