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

當你的編譯器不支援時,如何在 C 11 實現 `make_unique`?

Patricia Arquette
發布: 2024-11-01 10:25:02
原創
658 人瀏覽過

How to Implement `make_unique` in C  11 When Your Compiler Doesn't Support It?

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

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