What is the proper way to return an object from a C++ function?(从 C++ 函数返回对象的正确方法是什么?)
问题描述
我很困惑:
- 返回一个对象(但是该对象是从函数中的局部变量复制而来的,这会消耗内存)
- 返回一个指针(但是你必须记住在调用代码中删除它,这很奇怪)
- 返回一个引用(但这是不可能的,因为这将是对函数局部变量的引用,一旦函数结束,它就会被删除)
- returning an object (but then the object is copied from the local variable in the function, which consumes memory)
- returning a pointer (but then you have to remember to delete it, in the calling code, which is weird)
- returning a reference (but this is not possible because this would be a reference to a local variable of the function, which would be deleted as soon as the function ends)
我正在寻找在基本 C++ 中从 C++ 函数返回对象的正确方法(没有库处理指针和自动释放内存).我想知道这应该怎么做.
I am looking for the proper way to return an object from a C++ function, in basic C++ (no library handling pointers and freeing memory automatically). I want to know how this is supposed to be done.
谢谢
推荐答案
现代编译器通常实现 (命名)返回值优化,通过它您引用的副本(并且在逻辑上期望)没有完成.
Modern compilers typically implement the (Named) Return Value Optimization, by which the copy you reference (and would logically expect) is not done.
从 Visual Studio 2005 (VC++ 8.0) 开始,我就不再考虑返回对象.
Ever since Visual Studio 2005 (VC++ 8.0) I don't think twice about returning objects.
这篇关于从 C++ 函数返回对象的正确方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 C++ 函数返回对象的正确方法是什么?
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01