您好,登錄后才能下訂單哦!
本篇內容主要講解“C++如何使用make_shared構建shared_ptr管理的對象”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++如何使用make_shared構建shared_ptr管理的對象”吧!
Reason(原因)
make_shared gives a more concise statement of the construction. It also gives an opportunity to eliminate a separate allocation for the reference counts, by placing the shared_ptr's use counts next to its object.
make_shared為構造動作提供了更加簡明的表達。由于它將shared_ptr的計數置于對象之后,使用它還可以提供減少另外一次的增加計數的機會。
Example(示例)
void test() {
// OK: but repetitive; and separate allocations for the Bar and shared_ptr's use count
shared_ptr<Bar> p {new Bar{7}};
auto q = make_shared<Bar>(7); // Better: no repetition of Bar; one object
}
Flag the repetitive usage of template specialization list<Bar>
提示重復使用模板特化參數列表的情況
Flag variables declared to be shared_ptr<Bar>
提示使用shared_ptr直接定義變量的情況。
到此,相信大家對“C++如何使用make_shared構建shared_ptr管理的對象”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。