日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【Boost】系列03:内存管理之shared_ptr智能指针

發(fā)布時間:2023/12/20 编程问答 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【Boost】系列03:内存管理之shared_ptr智能指针 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

最有價值的!最有用的引用計數(shù)型智能指針,可以被拷貝和賦值,可以作為STL容器的元素;

1,基本用法:

#include <boost/smart_ptr.hpp> #include <assert.h> using namespace boost; int main() {shared_ptr<int> sp(new int(10));assert(sp.unique());shared_ptr<int> sp2 = sp;assert(sp == sp2 && sp.use_count() == 2);*sp2 = 100;assert(*sp == 100);sp.reset();assert(!sp);return 0; }

2,make_shared用法:

#include <boost/smart_ptr.hpp> #include <vector> #include <boost/make_shared.hpp> using namespace std; using namespace boost;int main() {typedef vector<shared_ptr<int> > vs;vs v(10);int i = 0;for (vs::iterator pos = v.begin(); pos != v.end(); ++pos){(*pos) = make_shared<int>(++i);cout<<*(*pos)<<", ";}cout<<endl;cout<<v[9].use_count()<<endl;cout<<"v[9]="<<*v[9]<<endl; shared_ptr<int> p = v[9];cout<<v[9].use_count()<<endl;*p = 100;cout<<*v[9]<<endl;return 0; }

輸出:

1, 2, 3, 4, 5, 6, 7, 8, 9, 10,

1

v[9]=10

2

100

總結(jié)

以上是生活随笔為你收集整理的【Boost】系列03:内存管理之shared_ptr智能指针的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。