在 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中文网其他相关文章!