在 C 11 中實作 make_unique 函數
在 C 11 中,make_unique 函數用於建立 unique_ptr 物件。它提供了一種分配記憶體和管理物件生命週期的便捷方法。對於那些編譯器不支援 make_unique 函數的人,可以建立自訂實作。
要寫 make_unique 函數,我們可以使用以原始指標作為參數的 unique_ptr 建構子。以下模板程式碼顯示如何實作 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 將參數傳遞給 T 建構函數,確保保留完美轉送。
對於支援它的編譯器,可以在 sasha.sochka 的答案中找到更複雜的實現,它還支援從陣列建立 unique_ptr 物件。但是,如果 sasha.sochka 的解決方案無法使用您的編譯器進行編譯,則上述實作應該可以有效運作。
以上是如何為缺乏本機支援的編譯器實作 C 11 中的 make_unique 函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!