千家信息网

C++中怎么使用make_shared()构建共享shared_ptr

发表于:2024-11-19 作者:千家信息网编辑
千家信息网最后更新 2024年11月19日,本篇文章为大家展示了C++中怎么使用make_shared()构建共享shared_ptr,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。Reason(原因)I
千家信息网最后更新 2024年11月19日C++中怎么使用make_shared()构建共享shared_ptr

本篇文章为大家展示了C++中怎么使用make_shared()构建共享shared_ptr,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

Reason(原因)

If you first make an object and then give it to a shared_ptr constructor, you (most likely) do one more allocation (and later deallocation) than if you use make_shared() because the reference counts must be allocated separately from the object.

如果你首先构建一个对象然后将它交给shared_ptr的构造函数,和使用make_shared的情况相比,你(很有可能)多执行了一次分配动作(和将要发生的一次释放动作)。因为参照计数(此处应该是shared_ptr对象,译者注)的分配必须和对象的分配分别进行。

Example(示例)

Consider(考虑下面的代码):

shared_ptr p1 { new X{2} }; // bad
auto p = make_shared(2); // good

The make_shared() version mentions X only once, so it is usually shorter (as well as faster) than the version with the explicit new.

make_shared方式只是用一次X对象,因此它通常比显式调用new的代码更简短(执行也更高效)。

上述内容就是C++中怎么使用make_shared()构建共享shared_ptr,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注行业资讯频道。

0