Is there other technique like RVO (return value optimization) or NRVO (named return value optimization) that can be use with VC2008?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Maybe this may help you. But typically it's the compiler who does such kind of optimization, not you. |
|||
|
|
|
I wouldn't worry too much about those optimisations if I were you. Apart from anything else, they are not portable. If you are worried about writing efficient C++ code, the number one rule is to avoid copying altogether. Make sure you use reference in all places where they are possible, but don't try to use them where they are not. After, all sometimes you actually need a new value - as the return value for implementations of operator+(), for example. |
|||||
|