這篇文章主要介紹“C++什么時候使用make_unique()”,在日常操作中,相信很多人在C++什么時候使用make_unique()問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++什么時候使用make_unique()”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務領域包括:成都網站制作、做網站、企業(yè)官網、英文網站、手機端網站、網站推廣等服務,滿足客戶于互聯(lián)網時代的雨花臺網站設計、移動媒體設計的需求,幫助企業(yè)找到有效的互聯(lián)網解決方案。努力成為您成熟可靠的網絡建設合作伙伴!
C.150:unique_ptr管理的對象要用make_unique()構建
make_unique提供了更簡潔的構建語句。在復雜的表達式中,它也可以保證異常安全。
unique_ptr p {new Foo{7}}; // OK: but repetitive
auto q = make_unique(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.
//
// If bar throws, Foo will not be destroyed, and the memory-allocated //for it will leak.
f(unique_ptr(new Foo()), bar());
// Exception-safe: calls to functions are never interleaved.
f(make_unique(), bar());
Flag the repetitive usage of template specialization list
提示重復使用模板初始化列表的代碼。
Flag variables declared to be unique_ptr
提示使用unique_ptr定義變量的情況。
到此,關于“C++什么時候使用make_unique()”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注創(chuàng)新互聯(lián)網站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
本文名稱:C++什么時候使用make_unique()?
當前鏈接:http://weahome.cn/article/jccihg.html