Are there any downsides with using make_shared to create a shared_ptr(使用 make_shared 创建 shared_ptr 有什么缺点吗)
问题描述
使用 make_shared
代替 shared_ptr
有什么缺点吗.
Are there any downsides with using make_shared<T>()
instead of using shared_ptr<T>(new T)
.
Boost 文档 声明
有来自的重复请求工厂函数的用户创建一个给定类型的对象并返回一个 shared_ptr 给它.除了方便又时尚,这样的功能也是异常安全的相当快,因为它可以使用两者的单一分配对象及其对应的控件块,消除了一个重要的shared_ptr 的部分构造高架.这消除了其中之一主要效率投诉shared_ptr.
There have been repeated requests from users for a factory function that creates an object of a given type and returns a shared_ptr to it. Besides convenience and style, such a function is also exception safe and considerably faster because it can use a single allocation for both the object and its corresponding control block, eliminating a significant portion of shared_ptr's construction overhead. This eliminates one of the major efficiency complaints about shared_ptr.
推荐答案
我知道至少两个.
- 您必须控制分配.不是很大,但一些较旧的 api 喜欢返回必须删除的指针.
- 没有自定义删除器.我不知道为什么这不受支持,但事实并非如此.这意味着您的共享指针必须使用普通删除器.
相当薄弱的地方.所以尽量总是使用 make_shared.
Pretty weak points. so try to always use make_shared.
这篇关于使用 make_shared 创建 shared_ptr 有什么缺点吗的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 make_shared 创建 shared_ptr 有什么缺点吗
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01