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