Understanding return value optimization and returning temporaries - C++(了解返回值优化和返回临时值 - C++)
问题描述
请考虑这三个功能.
std::string get_a_string()
{
return "hello";
}
std::string get_a_string1()
{
return std::string("hello");
}
std::string get_a_string2()
{
std::string str("hello");
return str;
}
- RVO 是否适用于所有三种情况?
- 可以像上面的代码那样返回一个临时的吗?我相信这没问题,因为我是按值返回它,而不是返回对它的任何引用.
有什么想法吗?
推荐答案
在前两种情况下,将进行 RVO 优化.RVO 是旧功能,大多数编译器都支持它.最后一种情况就是所谓的 NRVO(命名为 RVO).这是 C++ 相对较新的特性.标准允许但不要求实现 NRVO(以及 RVO),但一些编译器支持它.
In two first cases RVO optimization will take place. RVO is old feature and most compilers supports it. The last case is so called NRVO (Named RVO). That's relatively new feature of C++. Standard allows, but doesn't require implementation of NRVO (as well as RVO), but some compilers supports it.
您可以在 Scott Meyers 的书 更有效的 C++.35 种改进程序和设计的新方法.
You could read more about RVO in Item 20 of Scott Meyers book More Effective C++. 35 New Ways to Improve Your Programs and Designs.
这里是一篇关于Visual C++ 2005 中的 NRVO.
Here is a good article about NRVO in Visual C++ 2005.
这篇关于了解返回值优化和返回临时值 - C++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:了解返回值优化和返回临时值 - C++
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01