C 11 中 make_unique 的自定义实现
make_unique 是 C 14 中引入的一个实用函数,用于创建具有动态分配实例的 unique_ptr 对象。当不需要原始指针并且需要所有权管理时,这非常有用。但是,如果您的编译器不支持 make_unique,则可以使用自定义模板函数轻松实现。
要编写 make_unique,请使用以下模板声明:
<code class="cpp">template< class T, class... Args > unique_ptr<T> make_unique( Args&&... args );</code>
此模板采用类型 T 和可变数量的参数 Args。以下实现创建一个 unique_ptr 对象,其中包含使用提供的参数构造的新 T 实例:
<code class="cpp">template<typename T, typename... Args> std::unique_ptr<T> make_unique(Args&&... args) { return std::unique_ptr<T>(new T(std::forward<Args>(args)...)); }</code>
std::forward
make_unique 的此自定义实现模仿标准版本的行为,允许您在 C 中创建 unique_ptr 对象不支持 make_unique 的 11 个环境。
以上是如何在 C 11 中实现“make_unique”以增强所有权管理?的详细内容。更多信息请关注PHP中文网其他相关文章!