中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

C++如何使用make_shared構建shared_ptr管理的對象

發布時間:2021-08-24 09:51:02 來源:億速云 閱讀:160 作者:chen 欄目:大數據

本篇內容主要講解“C++如何使用make_shared構建shared_ptr管理的對象”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++如何使用make_shared構建shared_ptr管理的對象”吧!

使用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
}
Enforcement(實施建議)
  • Flag the repetitive usage of template specialization list<Bar>

  • 提示重復使用模板特化參數列表的情況

  • Flag variables declared to be shared_ptr<Bar>

  • 提示使用shared_ptr直接定義變量的情況。

到此,相信大家對“C++如何使用make_shared構建shared_ptr管理的對象”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

c++
AI

西盟| 沾益县| 赤城县| 怀远县| 沙湾县| 蓬莱市| 嘉义县| 长宁区| 浏阳市| 吉木乃县| 固阳县| 佛冈县| 武功县| 宁国市| 五莲县| 广宁县| 峨眉山市| 呈贡县| 会理县| 宜黄县| 浮梁县| 五台县| 桃园县| 河池市| 陵川县| 屏山县| 永定县| 南投县| 弥渡县| 龙井市| 五河县| 芒康县| 隆尧县| 醴陵市| 沾益县| 阿拉善右旗| 洛宁县| 绥江县| 墨玉县| 锦州市| 青冈县|