亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++什么時候使用make_unique()?

發布時間:2021-11-26 15:45:52 來源:億速云 閱讀:2350 作者:iii 欄目:大數據

這篇文章主要介紹“C++什么時候使用make_unique()”,在日常操作中,相信很多人在C++什么時候使用make_unique()問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++什么時候使用make_unique()”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

C.150:unique_ptr管理的對象要用make_unique()構建

Reason(原因)

make_unique提供了更簡潔的構建語句。在復雜的表達式中,它也可以保證異常安全。

Example(示例)
unique_ptr<Foo> p {new Foo{7}};    // OK: but repetitive

auto q = make_unique<Foo>(7);      // Better: no repetition of Foo

// Not exception-safe: the compiler may interleave the computations of //arguments as follows:
//
// 1. allocate memory for Foo,
// 2. construct Foo,
// 3. call bar,
// 4. construct unique_ptr<Foo>.
//
// If bar throws, Foo will not be destroyed, and the memory-allocated //for it will leak.
f(unique_ptr<Foo>(new Foo()), bar());

// Exception-safe: calls to functions are never interleaved.
f(make_unique<Foo>(), bar());
Enforcement(實施建議)
  • Flag the repetitive usage of template specialization list <Foo>

  • 提示重復使用模板初始化列表的代碼。

  • Flag variables declared to be unique_ptr<Foo>

  • 提示使用unique_ptr定義變量的情況。

到此,關于“C++什么時候使用make_unique()”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安顺市| 嵊泗县| 平阴县| 白山市| 额尔古纳市| 文昌市| 临夏市| 岳池县| 藁城市| 隆昌县| 长子县| 沂源县| 衡阳市| 浠水县| 阿荣旗| 历史| 临潭县| 新丰县| 浑源县| 龙胜| 盈江县| 晋州市| 延川县| 平谷区| 肇州县| 绥芬河市| 呈贡县| 广西| 岑溪市| 绥棱县| 花莲市| 平原县| 康保县| 许昌县| 吉水县| 门头沟区| 大洼县| 揭东县| 闽侯县| 汉沽区| 栖霞市|