在 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
此實作使用std::forward 此實作使用std::forward 此實作使用std::forward 此實作使用std::forward 此實作使用std::forward 此實作使用std::forward>以確保所有類型的參數(包括引用和右值引用)都能正確進行參數轉送。 請注意,如果您的編譯器支援 C 11 但不支援 make_unique 函數,您仍然可以使用此實作作為解決方法。或者,如果您有權存取支援 C 14 或更高版本的編譯器,則可以簡單地利用標準 std::make_unique 函數來實現此目的。以上是當你的編譯器不支援時,如何在 C 11 實現 `make_unique`?的詳細內容。更多資訊請關注PHP中文網其他相關文章!