出處:http://blog.csdn.net/heyabo/article/details/8791410
這篇文章主要來源於:codeguru網站的一篇文章:A TR1 tutorial:smart pointer (詳細介紹了C++的智能指針,尤其是shared_ptr)。
眾所周知,在 TR1 之前,C++標準庫中的智能指針只有auto_ptr,但由於它的【排他所有權模式】(exclusive ownership model)導致了許多問題,為解決,C++TR1中引入了 boost 開源庫中的智能指針:shared_ptr 和 weak_ptr 並使之成為了標準庫的一部分(C++11標準)。
注1:C++ TR1 即 C++ Technical Report 1 是 ISO/IEC TR 19768, C++ Library Extensions(函數庫擴充)的一般名稱,它是針對 C++ 標準庫的第一次擴展。
注2:C++最新標準:C++11已將智能指針:shared_ptr、weak_ptr收錄為標準庫中,即對應為:std::shared_ptr, std::weak_ptr,相應的頭文件:<memory>(相比TR1:頭文件:<tr1/memory>).
注3:若讀者編譯器不支持C++11標準,則編譯時:1.將頭文件由<memory> 改為 <tr1/memory>; 2.將namespace由 std:: 改為 std::tr1 .
一、智能指針類:std::auto_ptr
由於 auto_ptr 基於【排他所有權模式】,這意味著:兩個指針(同類型)不能指向同一個資源,複製或賦值都會改變資源的所有權。
一個簡單的例子1:
- #include <iostream>
- #include <memory>
- class A
- {
- public:
- void print(){std::cout<<“A::print”<<std::endl;}
- };
- int main()
- {
- std::auto_ptr<A>pa1(new A);
- pa1->print();
- std::cout<<“pa1 pointer:”<<pa1.get()<<std::endl;
- std::auto_ptr<A>pa2(pa1); //copy constructor
- pa2->print();
- std::cout<<“pa1 pointer:”<<pa1.get()<<std::endl;
- std::cout<<“pa2 pointer:”<<pa2.get()<<std::endl;
- return 0;
- }
輸出:
即即經過複製構造之後,pa1所指向資源的所有權轉向了pa2,而pa1變成空,二者不能同時共享該資源。
auto_ptr 主要有兩大問題:
- 複製和賦值會改變資源的所有權,不符合人的直覺。
- 在 STL 容器中無法使用auto_ptr ,因為容器內的元素必需支持可複製(copy constructable)和可賦值(assignable)。
二、C++11中新增的智能指針
新加入標準模板庫(STL)的智能指針有兩個:
shared_ptr:基於引用計數模型。每次有 shared_ptr 對象指向資源,引用計數器就加1;當有 shared_ptr 對象析構時,計數器減1;當計數器值為0時,被指向的資源將會被釋放掉。且該類型的指針可複製和可賦值,即其可用於STL容器中。此外,shared_ptr 指針可與多態類型和不完全類型一起使用。主要缺點:無法檢測出循環引用(後面會細說),如一顆樹,其中既有指向孩子結點的指針又有指向父親結點的指針,即孩子父親相互引用。這會造成資源無法釋放,從而導致內存洩露。為了 fix 這個問題,引入了另一個智能指針:weak_ptr.
weak_ptr:指向有shared_ptr 指向的資源(即其需要shared_ptr的參與,其輔助 shared_ptr 之用),但是不會導致計數。一旦計數器為0,不管此時指向資源的 weak_ptr 指針有多少,資源都會被釋放,而所有的這些 weak_ptr 指針會被標記為無效狀態(即 weak_ptr作為觀察shared_ptr 的角色存在著,shared_ptr 不會感受到 weak_ptr 的存在)。
上一例子的shared_ptr 實現-例子2:
- #include <iostream>
- #include <memory>
- class A
- {
- public:
- void print(){std::cout<<“A::print”<<std::endl;}
- };
- int main()
- {
- std::shared_ptr<A>sp1(new A); //namespace: std::
- sp1->print();
- std::cout<<“sp1 pointer:”<<sp1.get()<<std::endl;
- std::shared_ptr<A>sp2(sp1); //copy constructor
- sp2->print();
- std::cout<<“sp1 pointer:”<<sp1.get()<<std::endl;
- std::cout<<“sp2 pointer:”<<sp2.get()<<std::endl;
- std::cout<<“count sp1:”<<sp1.use_count()<<std::endl; //get reference count
- std::cout<<“count sp2:”<<sp2.use_count()<<std::endl;
- return 0;
- }
輸出:
可知:sp2創建後,sp1對資源的所有權並沒有被剝奪,而是sp1 和 sp2 均指向了資源,且此時資源的引用計數為2。當兩個shard_ptr 指針sp1、sp2 超過其作用域時,最後一個析構的指針將會致使資源的釋放(因為引用計數為0了)。
三、智能指針類:std::tr1::shared_ptr
3.1 概念
std::shared_ptr 智能指針共享所指向的資源(所有權),即幾個 shared_ptr 可同時擁有一個對象,且共享一個控制塊(constrol block),包含指向資源的 shared_ptr對象個數、指向資源的 weak_ptr 對象個數以及刪除器(deleter:用戶自定義的用於釋放資源的函數,可以默認沒有)。
一個空的 shared_ptr 對象不擁有任何資源和控制塊。另一方面,一個 shared_ptr 初始化為一個NULL 指針和一個控制塊,這有別有空的 shared_ptr。當共享的引用計數器為0時,資源釋放(delete 操作符釋放,或由用戶提供的 刪除器 釋放它)。
3.2 使用
(1)創建一個 shared_ptr 對象
常見,一個 shared_ptr 對象可由以下四種對象來構造:
- 指向任何類型 T 的指針(包括 const T),也可為指向的資源指定刪除器釋放它;
- 另一個 shared_ptr 對象;
- 一個 weak_ptr 對象;
- 一個 auto_ptr 對象。
它們對應的構造函數如下:
- //1
- template<class T>
- explicit shared_ptr(T*);
- template<class T, class D>
- shared_ptr(T*, D);
- //2
- template<class T>
- shared_ptr(const shared_ptr<T>&);
- //3
- template<class T>
- shared_ptr(const weak_ptr<T>&);
- //4
- shared_ptr(const auto_ptr&);
(2)刪除器(deleter)與 get_deleter函數:
get_deleter函數返回一個指針,指向shared_ptr 的刪除器,如果沒有提供刪除器則返回0。
例子3:
- #include <iostream>
- #include <memory>
- class A
- {
- public:
- static A* alloc()
- {
- A* pa = new A;
- std::cout<<“a new object was created”<<std::endl;
- return pa;
- }
- static void free(A* pa)
- {
- delete pa;
- std::cout<<“A object was destroyed”<<std::endl;
- }
- };
- typedef void(*deleter)(A*); //define a function type pointer to free;
- int main()
- {
- std::shared_ptr<A> spa(A::alloc(), &A::free);//deleter: &A::free()
- deleter* del = std::get_deleter<deleter>(spa);
- std::cout<<“get_deleter(spa)!=0 == “<<std::boolalpha<<(del!=0)<<std::endl;
- return 0;
- }
輸出:
(3)-> 、 * 操作符和 get 函數
shared_ptr 類重載了-> 操作符和 * 操作符,前者返回指向資源的指針;後者指向資源的引用。故無需內部指針。其原型如下:
- template<class T>
- class shared_ptr
- {
- public:
- T* get() const;
- T& operator*()const;
- T* operator->()const;
- };
其中 get 函數返回指向資源的指針,基本等同於 ->操作符,且與auto_ptr 兼容。
例子4:
- #include <iostream>
- #include <memory>
- class A
- {
- public:
- void print(){std::cout<<“A::print”<<std::endl;}
- };
- int main()
- {
- std::shared_ptr<A> sp(new A);
- A* pa = sp.get();
- if(pa)pa->print();
- std::cout<<“-> operator: “;
- sp->print();
- std::cout<<“* operator: “;
- (*sp).print();
- return 0;
- }
輸出:
(4)條件操作符(bool operator)
shared_ptr 類提供了布爾操作符,允許 shared_ptr 對象用於布爾表達式去檢查是否該shared_ptr對象裡的指針為NULL。
例子5:
- #include <iostream>
- #include <memory>
- #include <string>
- int main()
- {
- std::shared_ptr<std::string> sp1;
- if(sp1)
- {
- std::cout<<“pointer in sp1 is not NULL”<<std::endl;
- }
- else
- {
- std::cout<<“pointer in sp1 is NULL”<<std::endl;
- }
- std::shared_ptr<std::string> sp2(new std::string(“hello world”));
- if(sp2)
- {
- std::cout<<“pointer in sp2 is not NULL”<<std::endl;
- }
- else
- {
- std::cout<<“pointer in sp2 is NULL”<<std::endl;
- }
- return 0;
- }
輸出:
(5)交換與賦值(Swap and assignment)
I、函數原型:void swap(shared_ptr& r); //交換*this 與 r 的內容
II、賦值操作符:operator= ,重載後可將shared_ptr 或 auto_ptr 對象賦值給 shared_ptr 對象。
原型如下:
- template<class T>
- shared_ptr& operatork=(const shared_ptr<T>&r);
- template<class T>
- shared_ptr& operator=(const std::auto_ptr<T>& r);
- };
例子6:
- #include <iostream>
- #include <memory>
- #include <string>
- void isEmpty(std::shared_ptr<std::string>& r)
- {
- if(r)
- {
- std::cout<<“pointer in shared_ptr is not NULL”<<std::endl;
- }
- else
- {
- std::cout<<“pointer in shared_ptr is NULL”<<std::endl;
- }
- }
- int main()
- {
- std::cout<<“before swap:”<<std::endl;
- std::shared_ptr<std::string> sp1;
- std::cout<<“sp1: “;
- isEmpty(sp1);
- std::shared_ptr<std::string> sp2(new std::string(“hello world”));
- std::cout<<“sp2: “;
- isEmpty(sp2);
- sp1.swap(sp2); //swap
- std::cout<<“after swap:”<<std::endl;
- std::cout<<“sp1: “;
- isEmpty(sp1);
- std::cout<<“sp2: “;
- isEmpty(sp2);
- std::cout<<“before operator=:”<<std::endl;
- std::cout<<“sp1: “<<sp1<<“, *sp1: “<<*sp1<<std::endl;
- std::cout<<“sp2: “;
- isEmpty(sp2);
- sp2 = sp1; //assignment
- std::cout<<“after operator=:”<<std::endl;
- std::cout<<“sp1: “<<sp1<<“, *sp1: “<<*sp1<<std::endl;
- std::cout<<“sp2: “<<sp2<<“, *sp2: “<<*sp2<<std::endl;
- return 0;
- }
輸出:
(6)unique 與 use_count函數
函數原型:
- //use_count
- long use_count() const; //返回所有指向共享資源的shared_ptr 指針對象的個數
- //unique()
- bool unique() const; //檢查是否當前只有一個share_ptr 指針指向共享的資源。等價於:use_count() == 1
例子7:
- #include <iostream>
- #include <memory>
- #include <string>
- int main()
- {
- std::shared_ptr<std::string> sp1(new std::string(“hello world”));
- std::cout<<“unique:”<<std::boolalpha<<sp1.unique()<<std::endl;
- std::cout<<“count:”<<sp1.use_count()<<std::endl;
- std::shared_ptr<std::string> sp2(sp1);
- std::cout<<“unique:”<<std::boolalpha<<sp1.unique()<<std::endl;
- std::cout<<“sp1 count:”<<sp1.use_count()<<std::endl;
- std::cout<<“sp2 count:”<<sp2.use_count()<<std::endl;
- return 0;
- }
輸出:
(7)reset函數
函數原型:
- //std::shared_ptr::reset
- void reset();
- template<class Y>
- void reset(Y* ptr);
- template<class Y, class Deleter>
- void reset(Y* ptr, Deleter d);
該函數用 ptr 指針指向的資源替換掉當前shared_ptr 管理的資源,使 shared_ptr對象管理新的資源(pointered by ptr),以前資源對應的share_ptr 對象的引用計數減1。如果reset函數的參數為空,則表示*this(當前share_ptr 對象)退出共享資源。
例子8:
- #include <iostream>
- #include <memory>
- class A
- {
- private:
- int m_x;
- public:
- explicit A(int x =0):m_x(x){}
- int getX(){return m_x;}
- int setX(int x){m_x = x;}
- void print(){std::cout<<“A::print”<<std::endl;}
- static A* alloc(int x)
- {
- A* pa = new A(x);
- std::cout<<“a new object was created”<<std::endl;
- }
- static void free(A* pa)
- {
- std::cout<<“x: “<<pa->getX();
- delete pa;
- std::cout<<“,A object was destroyed”<<std::endl;
- }
- };
- int main()
- {
- std::shared_ptr<A> sp1(new A(10),&A::free);
- std::shared_ptr<A> sp2(sp1);
- std::shared_ptr<A> sp3(sp1);
- std::cout<<“sp1 x :”<<sp1->getX()<<std::endl;
- std::cout<<“sp2 x :”<<sp2->getX()<<std::endl;
- std::cout<<“sp3 x :”<<sp3->getX()<<std::endl;
- std::cout<<“sp1 count:”<<sp1.use_count()<<std::endl;
- std::cout<<“sp2 count:”<<sp2.use_count()<<std::endl;
- std::cout<<“sp3 count:”<<sp3.use_count()<<std::endl;
- sp1.reset();
- A* pa = new A(20);
- sp2.reset(pa,&A::free);
- std::cout<<“after reset:”<<std::endl;
- if(NULL == sp1)
- {
- std::cout<<“pointer in sp1 is NULL”<<std::endl;
- }
- //std::cout<<“sp1 x :”<<sp1->getX()<<std::endl;
- std::cout<<“sp2 x :”<<sp2->getX()<<std::endl;
- std::cout<<“sp3 x :”<<sp3->getX()<<std::endl;
- std::cout<<“sp1 count:”<<sp1.use_count()<<std::endl;
- std::cout<<“sp2 count:”<<sp2.use_count()<<std::endl;
- std::cout<<“sp3 count:”<<sp3.use_count()<<std::endl;
- return 0;
- }
輸出:
(8)shared_ptr 在 STL 容器中的應用
由前面提到,shared_ptr 相比於 auto_ptr,可複製和賦值,故可用於 STL 容器中。
下面的例子9:將shared_ptr<int> 放入容器中,並對每個容器中的元素進行操作,如使shared_ptr 指向的int 變量 變為原來的2倍。
- #include <iostream>
- #include <memory>
- #include <vector>
- #include <algorithm>
- std::shared_ptr<int> double_it(const std::shared_ptr<int>& sp)
- {
- *sp *= 2;
- return sp;
- }
- int main()
- {
- std::vector<std::shared_ptr<int>> numbers;
- numbers.push_back(std::shared_ptr<int>(new int(1)));
- numbers.push_back(std::shared_ptr<int>(new int(2)));
- numbers.push_back(std::shared_ptr<int>(new int(3)));
- std::cout<<“initially”<<std::endl;
- for(std::vector<std::shared_ptr<int>>::const_iterator it = numbers.begin(); it != numbers.end(); it++)
- {
- std::cout<<*(*it)<<“(count = “<<(*it).use_count()<<“)”<<std::endl;
- }
- std::transform(numbers.begin(), numbers.end(), numbers.begin(), double_it);
- std::cout<<“after transformation”<<std::endl;
- for(std::vector<std::shared_ptr<int>>::const_iterator it = numbers.begin(); it != numbers.end(); it++)
- {
- std::cout<<*(*it)<<“(count = “<<(*it).use_count()<<“)”<<std::endl;
- }
- return 0;
- }
輸出:
(9)shared_ptr 在類層次結構中的應用
如 D 是 B 的子類,則可用shared_ptr<B>類型的對象(基類指針)接收shared_ptr<D>類型的對象(派生類指針)。
例子10:
- #include <iostream>
- #include <memory>
- #include <string>
- #include <vector>
- class Item
- {
- private:
- std::string title_;
- public:
- explicit Item(const std::string& title):title_(title){}
- virtual ~Item(){}
- virtual std::string Description() const = 0;
- std::string getTitle()const {return title_;}
- };
- class Book: public Item
- {
- private:
- int pages_;
- public:
- Book(const std::string& title, int pages):Item(title),pages_(pages){}
- virtual std::string Description()const {return “Book: ” + getTitle();}
- int getPages()const {return pages_;}
- };
- class DVD: public Item
- {
- private:
- int tracks_;
- public:
- DVD(const std::string& title, int tracks):Item(title),tracks_(tracks){}
- virtual std::string Description() const {return “DVD: ” + getTitle();}
- int getTracks()const {return tracks_;}
- };
- int main()
- {
- std::vector<std::shared_ptr<Item>> items;
- items.push_back(std::shared_ptr<Book>(new Book(“C++ Primer”,745)));
- items.push_back(std::shared_ptr<DVD>(new DVD(“MrVanGogh”,9)));
- for(std::vector<std::shared_ptr<Item>>::const_iterator it = items.begin(); it != items.end(); it++)
- {
- std::cout<<(*it)->Description()<<std::endl;
- }
- return 0;
- }
輸出:
(10)cast 操作符
C++ 中提供了四種強制類型轉換操作符:static_cast, dynamic_cast, const_cast, reinterpret_cast。而關於shared_ptr 無法利用這些原始的操作符進行轉換,其定義了自己的類型轉換操作符:static_pointer_cast, dynamic_pointer_cast, const_pointer_cast 。
如【9】中提到的 “若 D 是 B的子類 ”,其為向上轉換,但能否向下轉換呢?即從 shared_ptr<B> 到 shared_ptr<D> (當然,前提是:shared_ptr<B> 已指向了一個D對象,現在要做的就是“還原它”)。
I、使用 std::dynamic_pointer_cast,可以達到目的:
- template<class D, class B>
- shared_ptr<D> dynamic_pointer_cast(const shared_ptr<B>& r);
該函數不會拋出任何異常(noexcept)。若執行成功(前提:shared_ptr<B>對象 r 已經指向了一個D對象),則返回 shared_ptr<D> 共享資源的所有權,否則返回一個空對象。
例子11:
- #include <iostream>
- #include <memory>
- #include <string>
- class Item
- {
- private:
- std::string title_;
- public:
- explicit Item(const std::string& title):title_(title){}
- virtual ~Item(){}
- virtual std::string Description() const = 0;
- std::string getTitle()const {return title_;}
- };
- class Book: public Item
- {
- private:
- int pages_;
- public:
- Book(const std::string& title, int pages):Item(title),pages_(pages){}
- virtual std::string Description()const {return “Book: ” + getTitle();}
- int getPages()const {return pages_;}
- };
- class DVD: public Item
- {
- private:
- int tracks_;
- public:
- DVD(const std::string& title, int tracks):Item(title),tracks_(tracks){}
- virtual std::string Description() const {return “DVD: ” + getTitle();}
- int getTracks()const {return tracks_;}
- };
- int main()
- {
- std::shared_ptr<Item> spi(new DVD(“MrVanGogh”, 9));
- std::cout<<“spi counter: “<<spi.use_count()<<std::endl;
- std::shared_ptr<Book> spb = std::dynamic_pointer_cast<Book>(spi);
- if(spb)
- {
- std::cout<<spb->getTitle()<<“, “<<spb->getPages()<<std::endl;
- }
- else
- {
- std::cout<<“pointer in spb is NULL”<<std::endl;
- }
- std::shared_ptr<DVD> spd = std::dynamic_pointer_cast<DVD>(spi);
- if(spd)
- {
- std::cout<<spd->getTitle()<<“, “<<spd->getTracks()<<std::endl;
- }
- else
- {
- std::cout<<“pointer in spd is NULL”<<std::endl;
- }
- std::cout<<“spi counter: “<<spi.use_count()<<std::endl;
- std::cout<<“spb counter: “<<spb.use_count()<<std::endl;
- std::cout<<“spd counter: “<<spd.use_count()<<std::endl;
- return 0;
- }
輸出:
II、static_pointer_cast
根據 static_cast 的知識:編譯器隱式執行的任何類型轉換都可以由static_cast 顯示完成(如 int -> char;); 如果編譯器不提供自動轉換,使用 static_cast 來執行類型轉換也是很有用的(如,找回存放在 void* 指針中的值)。
注意:static_cast 轉換的一個特點就是:它只會生成原變量的副本,不會對原變量有任何修改。
而static_pointer_cast 工作的前提是:static_cast<T*>(r.get()) 必須是有效的。二者理念相同!
例子12:
- #include <iostream>
- #include <memory>
- #include <vector>
- int main()
- {
- std::vector<std::shared_ptr<void>> items;
- std::shared_ptr<char> sp1(new char(‘A’));
- std::shared_ptr<int> sp2(new int(66)); //66 ASCII : ‘B’
- std::cout<<“after creating the shared_ptr”<<std::endl;
- std::cout<<“sp1 counter: “<<sp1.use_count()<<std::endl;
- std::cout<<“sp2 counter: “<<sp2.use_count()<<std::endl;
- items.push_back(sp1);
- items.push_back(sp2);
- std::cout<<“after adding to the vector”<<std::endl;
- std::cout<<“sp1 counter: “<<sp1.use_count()<<std::endl;
- std::cout<<“sp2 counter: “<<sp2.use_count()<<std::endl;
- std::shared_ptr<char> spc1 = std::static_pointer_cast<char>(*(items.begin()));
- if(spc1)
- {
- std::cout<<“&spc1: “<<&spc1<<std::endl;
- std::cout<<“*spc1: “<<*spc1<<std::endl;
- }
- std::shared_ptr<char> spc2 = std::static_pointer_cast<char>(*(items.begin()+1));
- if(spc2)
- {
- std::cout<<“&spc2: “<<&spc2<<std::endl;
- std::cout<<“*spc2: “<<*spc2<<std::endl;
- }
- std::shared_ptr<short> spd2 = std::static_pointer_cast<short>(*(items.begin()+1));
- if(spd2)
- {
- std::cout<<“&spd2: “<<&spd2<<std::endl;
- std::cout<<“*spd2: “<<*spd2<<std::endl;
- }
- std::cout<<“after casting”<<std::endl;
- std::cout<<“sp1 couner: “<<sp1.use_count()<<std::endl;
- std::cout<<“spc1 couner: “<<spc1.use_count()<<std::endl;
- std::cout<<“sp2 couner: “<<sp2.use_count()<<std::endl;
- std::cout<<“spc2 couner: “<<spc2.use_count()<<std::endl;
- std::cout<<“spd2 couner: “<<spd2.use_count()<<std::endl;
- return 0;
- }
輸出:
III、const_pointer_cast
若 const_cast<T*>(sp.get()) 返回一個NULL指針,則 std::cosnt_pointer_cast 返回一個空的對象。否則,它返回一個shared_ptr<T>對象。
原型:
原型:
- template<classT,class U>
- shared_ptr<T>cosnt_pointer_cast(const shared_ptr<U>& r);
四、智能指針:std::tr1::weak_ptr
引入:由於 shared_ptr 智能指針的缺陷:無法檢測循環引用(關於 share_ptr 的循環引用詳細內容,可參見我的另一篇文章:Effective shared_ptr)—這是所有引用型智能指針的硬傷。為瞭解決這個問題又引入了 weak_ptr 指針。
概念:該類型智能指針也是指向由 shared_ptr 所指向的資源,但是不增加引用計數,故稱為”弱引用(weak reference)“ 。當最後擁有資源的最後一個 shared_ptr 對象離開其作用域時,資源被釋放,weak_ptr 被標記為無效狀態。並且可以通過函數 expired() 來檢查是是否 weak_ptr 處於無效狀態。weak_ptr 在訪問所引用的對象前必須先轉換為 shared_ptr, 即其【來於 shared_ptr 也去於 shared_ptr】。
作用(觀察者的角度):weak_ptr 是用來表達臨時所有權的概念:當某個對象只有存在時才需要被訪問,而且隨時可以被他人刪除時,可以使用 weak_ptr 來跟蹤該對象。需要獲得臨時所有權時,則將其轉換為 shared_ptr ,此時若原來的 shared_ptr 被銷毀,則該對象的生命週期將延長至這個臨時生成的 shared_ptr 同樣被銷毀為止。
線程安全:考慮到多線程環境下,可通過std::weak_ptr::lock函數創建一個新的shared_ptr 管理對象的共享所有權—–作為臨時訪問的shared_ptr(此時引用計數是會增1 的,即此臨時的 shared_ptr 若沒有離開其作用域,共享的資源是不會被釋放的)。如果沒有管理的對象,即*this 為空,則返回的 shared_ptr 也是空;否則返回:shared_ptr<T>(*this) 。
例子13:
- #include <iostream>
- #include <memory>
- void show(const std::weak_ptr<int>& wp)
- {
- std::shared_ptr<int> sp = wp.lock();
- std::cout<<*sp<<std::endl;
- }
- int main()
- {
- std::weak_ptr<int> wp;
- { //create a namesapce deliberately
- std::shared_ptr<int> sp(new int(10));
- wp = sp;
- show(wp);
- }
- std::cout<<“expire: “<<std::boolalpha<<wp.expired()<<std::endl;
- return 0;
- }
輸出:
由於shared_ptr智能指針存在缺陷,故用好它也是很關鍵的問題,具體內容,見續集:Effective shared_ptr.