您好,登錄后才能下訂單哦!
這篇文章主要介紹“C++什么時候使用make_unique()”,在日常操作中,相信很多人在C++什么時候使用make_unique()問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++什么時候使用make_unique()”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
C.150:unique_ptr管理的對象要用make_unique()構建
make_unique提供了更簡潔的構建語句。在復雜的表達式中,它也可以保證異常安全。
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());
Flag the repetitive usage of template specialization list <Foo>
提示重復使用模板初始化列表的代碼。
Flag variables declared to be unique_ptr<Foo>
提示使用unique_ptr定義變量的情況。
到此,關于“C++什么時候使用make_unique()”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。