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

溫馨提示×

溫馨提示×

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

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

boost shared_ptr 用法

發布時間:2020-07-22 12:12:52 來源:網絡 閱讀:967 作者:fengyuzaitu 欄目:編程語言

1 shared_ptr    不明確的符號

boost的一些庫,比如share_ptr已經被高版本的stl采納了.如果在代碼中沒有指定命名空間,編譯器就無法得知應該使用哪個命名空間之下的代碼進行編譯如下引入的命名空間的方式不推薦

using namespace std;

using namespace tr1;

using namespace boost;

實際上兩個智能指針是一樣的,你只需要用一個即可.如果你一定要兩個都用,那么不要寫上面的語句.而是應該寫std::tr1::xxxx, boost:xxxx


2 shared_ptr 作為類成員函數的寫法

#include <iostream>

#include <boost/shared_ptr.hpp>


struct SStudentInfo

{

public:

SStudentInfo() 

{

std::cout << "Create instance" << std::endl;

};


~SStudentInfo() 

{

std::cout << "Free instance" << std::endl;

}

};


class CTestSharedPtr

{

public:


CTestSharedPtr() 

{

//m_student = new SStudentInfo();//error

m_student = boost::shared_ptr<SStudentInfo>(new SStudentInfo());

};


~CTestSharedPtr() {};

private:


boost::shared_ptr<SStudentInfo> m_student;

};


向AI問一下細節

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

AI

周口市| 东光县| 青浦区| 建始县| 财经| 南木林县| 阿克苏市| 奇台县| 稷山县| 汉中市| 赤水市| 长丰县| 张家川| 揭西县| 肇州县| 稻城县| 股票| 上栗县| 九龙县| 油尖旺区| 泸州市| 隆德县| 巴彦县| 泰州市| 三门峡市| 巫溪县| 施秉县| 巴塘县| 九寨沟县| 丹寨县| 班玛县| 贡嘎县| 开平市| 滕州市| 洞头县| 航空| 改则县| 崇州市| 靖宇县| 威信县| 东明县|