溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

boost shared_ptr 用法

發(fā)布時(shí)間:2020-07-22 12:12:52 來源:網(wǎng)絡(luò) 閱讀:966 作者:fengyuzaitu 欄目:編程語言

1 shared_ptr    不明確的符號(hào)

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

using namespace std;

using namespace tr1;

using namespace boost;

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


2 shared_ptr 作為類成員函數(shù)的寫法

#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問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI