首頁 >後端開發 >C++ >如何在 C 11 中實作 make_unique 函數?

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

DDD
DDD原創
2024-10-30 13:26:02671瀏覽

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