首页 >后端开发 >C++ >如何在 C 11 中实现 make_unique 函数?

如何在 C 11 中实现 make_unique 函数?

DDD
DDD原创
2024-10-30 13:26:02677浏览

How to Implement the make_unique Function in C  11?

在 C 11 中实现 make_unique 函数

尽管某些编译器省略了 make_unique 函数,但 make_unique 函数仍然是管理内存的重要工具。以下是如何在 C 11 中复制其功能:

<code class="cpp">template<typename T, typename... Args>
std::unique_ptr<T> make_unique(Args&&... args)
{
    // Allocate the object on the heap with the provided arguments
    return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}</code>

此实现利用 std::forward 来确保将参数完美转发到由唯一指针管理的对象的构造函数。

对于缺乏 make_unique 支持的编译器,例如 VC2012,这个自定义实现提供了一个有效的替代方案。但是,如果您的编译器支持 sasha.sochka 提供的答案,则该解决方案更加健壮并且也可以处理数组。

以上是如何在 C 11 中实现 make_unique 函数?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn