首页 > 后端开发 > C++ > 正文

当你的编译器不支持时,如何在 C 11 中实现 `make_unique`?

Patricia Arquette
发布: 2024-11-01 10:25:02
原创
658 人浏览过

How to Implement `make_unique` in C  11 When Your Compiler Doesn't Support It?

在 C 11 中重新创建 make_unique 函数

C 11 标准引入了一个强大的函数 make_unique,用于创建唯一指针。然而,有些人可能会遇到编译器不支持此功能的问题。本文提供了在 C 11 中实现 make_unique 的解决方法。

根据问题,make_unique 函数原型为:

<code class="cpp">template< class T, class... Args > unique_ptr<T> make_unique( Args&&&... args );</code>
登录后复制

以下代码提供了 make_unique 的实现:

<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函数以确保所有类型的参数(包括引用和右值引用)都能正确进行参数转发。

请注意,如果您的编译器支持 C 11 但不支持 make_unique 函数,您仍然可以使用此实现作为解决方法。或者,如果您有权访问支持 C 14 或更高版本的编译器,则可以简单地利用标准 std::make_unique 函数来实现此目的。

以上是当你的编译器不支持时,如何在 C 11 中实现 `make_unique`?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!