首頁 > 後端開發 > C++ > 主體

如何在 C 11 中實作 make_unique 函數?

DDD
發布: 2024-10-30 13:26:02
原創
600 人瀏覽過

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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!