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

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【Boost】系列02:内存管理之scoped_ptr智能指针

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

智能指針,stl中有auto_ptr,boost的smart_ptr庫有6種:

scoped_ptr,scoped_array,shared_ptr,shared_array,weak_ptr和intrusive_ptr.

scoped_ptr的拷貝構造函數和賦值操作符聲明為私有,以禁止對智能指針的復制。

例1:

#include <boost/smart_ptr.hpp> #include <iostream> #include <string> using namespace std; using namespace boost;int main() {scoped_ptr<string> sps(new string("Hello Boost"));cout<<sps->size()<<endl; cout<<*sps<<endl;return 0; }

輸出

11

Hello Boost

例2:

#include <boost/smart_ptr.hpp> #include <iostream> #include <string> using namespace std; using namespace boost; struct tag_file {tag_file(const char *file_name){cout<<"open file:"<<file_name<<endl;}~tag_file(){cout<<"close file"<<endl;}}; int main() {scoped_ptr<int> spi(new int);if (spi) //用bool語境測試 {*spi = 100;cout<<*spi<<endl;}spi.reset();assert(spi == 0);if (!spi){cout<<"scoped_ptr == null"<<endl;}scoped_ptr<tag_file> spf(new tag_file("a.txt"));return 0; }

輸出

100

scoped_ptr == null

open file:a.txt

close file

總結

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

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。