91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

青川县| 筠连县| 四川省| 郑州市| 阳原县| 绥中县| 裕民县| 高台县| 延长县| 芦山县| 富源县| 建阳市| 晋宁县| 商河县| 嘉祥县| 临清市| 张家口市| 罗甸县| 东莞市| 汤阴县| 乌拉特前旗| 徐汇区| 蓝山县| 拉萨市| 桓仁| 陇南市| 长武县| 沙河市| 房产| 定州市| 南和县| 江孜县| 靖西县| 长宁县| 萍乡市| 清水河县| 昌江| 琼海市| 镇赉县| 黄石市| 基隆市|