Facilitate the return value optimization.(More Effective C++)

The rules for C++ allow compilers to optimize temporary objects out of existence. As a result, if you call operator* in a context like this,

    Rational a = 10; 
    Rational b(1, 2); 
    Rational c = a * b;                          // operator* is called here 

your compilers are allowed to eliminate both the temporary inside operator* and the temporary returned by operator*. They can construct the object defined by the return expression inside the memory allotted for the object c. If your compilers do this, the total cost of temporary objects as a result of your calling operator* is zero: no temporaries are created. Instead, you pay for only one constructor call — the one to create c. Furthermore, you can't do any better than this, because c is a named object, and named objects can't be eliminated

原文链接: https://www.cnblogs.com/zhtf2014/archive/2012/03/09/2387538.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    Facilitate the return value optimization.(More Effective C++)

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/43777

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月8日 下午8:24
下一篇 2023年2月8日 下午8:25

相关推荐