詳解C++11智能指針


詳解C++11智能指針

 

轉載自:https://www.cnblogs.com/WindSun/p/11444429.html

前言

C++里面的四個智能指針: auto_ptr, unique_ptr,shared_ptr, weak_ptr 其中后三個是C++11支持,並且第一個已經被C++11棄用。

C++11智能指針介紹

智能指針主要用於管理在堆上分配的內存,它將普通的指針封裝為一個棧對象。當棧對象的生存周期結束后,會在析構函數中釋放掉申請的內存,從而防止內存泄漏。C++ 11中最常用的智能指針類型為shared_ptr,它采用引用計數的方法,記錄當前內存資源被多少個智能指針引用。該引用計數的內存在堆上分配。當新增一個時引用計數加1,當過期時引用計數減一。只有引用計數為0時,智能指針才會自動釋放引用的內存資源。對shared_ptr進行初始化時不能將一個普通指針直接賦值給智能指針,因為一個是指針,一個是類。可以通過make_shared函數或者通過構造函數傳入普通指針。並可以通過get函數獲得普通指針。

為什么要使用智能指針

智能指針的作用是管理一個指針,因為存在以下這種情況:申請的空間在函數結束時忘記釋放,造成內存泄漏。使用智能指針可以很大程度上的避免這個問題,因為智能指針是一個類,當超出了類的實例對象的作用域時,會自動調用對象的析構函數,析構函數會自動釋放資源。所以智能指針的作用原理就是在函數結束時自動釋放內存空間,不需要手動釋放內存空間。

auto_ptr

(C++98的方案,C++11已經拋棄)采用所有權模式。

1 auto_ptr<string> p1 (new string ("I reigned lonely as a cloud.")); 
2 auto_ptr<string> p2; 
3 p2 = p1; //auto_ptr不會報錯.

此時不會報錯,p2剝奪了p1的所有權,但是當程序運行時訪問p1將會報錯。所以auto_ptr的缺點是:存在潛在的內存崩潰問題!

unique_ptr

(替換auto_ptr)unique_ptr實現獨占式擁有或嚴格擁有概念,保證同一時間內只有一個智能指針可以指向該對象。它對於避免資源泄露(例如“以new創建對象后因為發生異常而忘記調用delete”)特別有用。

采用所有權模式,還是上面那個例子

1 unique_ptr<string> p3 (new string ("auto"));   //#4
2 unique_ptr<string> p4;                       //#5
3 p4 = p3;//此時會報錯!!

編譯器認為p4=p3非法,避免了p3不再指向有效數據的問題。嘗試復制p3時會編譯期出錯,而auto_ptr能通過編譯期從而在運行期埋下出錯的隱患。因此,unique_ptr比auto_ptr更安全。

另外unique_ptr還有更聰明的地方:當程序試圖將一個 unique_ptr 賦值給另一個時,如果源 unique_ptr 是個臨時右值,編譯器允許這么做;如果源 unique_ptr 將存在一段時間,編譯器將禁止這么做,比如:

1 unique_ptr<string> pu1(new string ("hello world")); 
2 unique_ptr<string> pu2; 
3 pu2 = pu1;                                      // #1 不允許
4 unique_ptr<string> pu3; 
5 pu3 = unique_ptr<string>(new string ("You"));   // #2 允許

其中#1留下懸掛的unique_ptr(pu1),這可能導致危害。而#2不會留下懸掛的unique_ptr,因為它調用 unique_ptr 的構造函數,該構造函數創建的臨時對象在其所有權讓給 pu3 后就會被銷毀。這種隨情況而已的行為表明,unique_ptr 優於允許兩種賦值的auto_ptr 。

注:如果確實想執行類似與#1的操作,要安全的重用這種指針,可給它賦新值。C++有一個標准庫函數std::move(),讓你能夠將一個unique_ptr賦給另一個。盡管轉移所有權后 還是有可能出現原有指針調用(調用就崩潰)的情況。但是這個語法能強調你是在轉移所有權,讓你清晰的知道自己在做什么,從而不亂調用原有指針。

(額外:boost庫的boost::scoped_ptr也是一個獨占性智能指針,但是它不允許轉移所有權,從始而終都只對一個資源負責,它更安全謹慎,但是應用的范圍也更狹窄。)

例如:

cpp
unique_ptr<string> ps1, ps2; ps1 = demo("hello"); ps2 = move(ps1); ps1 = demo("alexia"); cout << *ps2 << *ps1 << endl; 

shared_ptr

shared_ptr實現共享式擁有概念。多個智能指針可以指向相同對象,該對象和其相關資源會在“最后一個引用被銷毀”時候釋放。從名字share就可以看出了資源可以被多個指針共享,它使用計數機制來表明資源被幾個指針共享。可以通過成員函數use_count()來查看資源的所有者個數。除了可以通過new來構造,還可以通過傳入auto_ptr, unique_ptr,weak_ptr來構造。當我們調用release()時,當前指針會釋放資源所有權,計數減一。當計數等於0時,資源會被釋放。

shared_ptr 是為了解決 auto_ptr 在對象所有權上的局限性(auto_ptr 是獨占的), 在使用引用計數的機制上提供了可以共享所有權的智能指針。

成員函數:

use_count 返回引用計數的個數

unique 返回是否是獨占所有權( use_count 為 1)

swap 交換兩個 shared_ptr 對象(即交換所擁有的對象)

reset 放棄內部對象的所有權或擁有對象的變更, 會引起原有對象的引用計數的減少

get 返回內部對象(指針), 由於已經重載了()方法, 因此和直接使用對象是一樣的.如

shared_ptr<int> sp(new int(1)); 

sp 與 sp.get()是等價的。

share_ptr的簡單例子:

 1 int main()
 2 {
 3     string *s1 = new string("s1");
 4 
 5     shared_ptr<string> ps1(s1);
 6     shared_ptr<string> ps2;
 7     ps2 = ps1;
 8 
 9     cout << ps1.use_count()<<endl;    //2
10     cout<<ps2.use_count()<<endl;    //2
11     cout << ps1.unique()<<endl;    //0
12 
13     string *s3 = new string("s3");
14     shared_ptr<string> ps3(s3);
15 
16     cout << (ps1.get()) << endl;    //033AEB48
17     cout << ps3.get() << endl;    //033B2C50
18     swap(ps1, ps3);    //交換所擁有的對象
19     cout << (ps1.get())<<endl;    //033B2C50
20     cout << ps3.get() << endl;    //033AEB48
21 
22     cout << ps1.use_count()<<endl;    //1
23     cout << ps2.use_count() << endl;    //2
24     ps2 = ps1;
25     cout << ps1.use_count()<<endl;    //2
26     cout << ps2.use_count() << endl;    //2
27     ps1.reset();    //放棄ps1的擁有權,引用計數的減少
28     cout << ps1.use_count()<<endl;    //0
29     cout << ps2.use_count()<<endl;    //1
30 }

weak_ptr

share_ptr雖然已經很好用了,但是有一點share_ptr智能指針還是有內存泄露的情況,當兩個對象相互使用一個shared_ptr成員變量指向對方,會造成循環引用,使引用計數失效,從而導致內存泄漏。

weak_ptr 是一種不控制對象生命周期的智能指針, 它指向一個 shared_ptr 管理的對象. 進行該對象的內存管理的是那個強引用的shared_ptr, weak_ptr只是提供了對管理對象的一個訪問手段。weak_ptr 設計的目的是為配合 shared_ptr 而引入的一種智能指針來協助 shared_ptr 工作, 它只可以從一個 shared_ptr 或另一個 weak_ptr 對象構造, 它的構造和析構不會引起引用記數的增加或減少。weak_ptr是用來解決shared_ptr相互引用時的死鎖問題,如果說兩個shared_ptr相互引用,那么這兩個指針的引用計數永遠不可能下降為0,資源永遠不會釋放。它是對對象的一種弱引用,不會增加對象的引用計數,和shared_ptr之間可以相互轉化,shared_ptr可以直接賦值給它,它可以通過調用lock函數來獲得shared_ptr。

 1 class B;    //聲明
 2 class A
 3 {
 4 public:
 5     shared_ptr<B> pb_;
 6     ~A()
 7     {
 8         cout << "A delete\n";
 9     }
10 };
11 
12 class B
13 {
14 public:
15     shared_ptr<A> pa_;
16     ~B()
17     {
18         cout << "B delete\n";
19     }
20 };
21 
22 void fun()
23 {
24     shared_ptr<B> pb(new B());
25     shared_ptr<A> pa(new A());
26     cout << pb.use_count() << endl;    //1
27     cout << pa.use_count() << endl;    //1
28     pb->pa_ = pa;
29     pa->pb_ = pb;
30     cout << pb.use_count() << endl;    //2
31     cout << pa.use_count() << endl;    //2
32 }
33 
34 int main()
35 {
36     fun();
37     return 0;
38 }

可以看到fun函數中pa ,pb之間互相引用,兩個資源的引用計數為2,當要跳出函數時,智能指針pa,pb析構時兩個資源引用計數會減1,但是兩者引用計數還是為1,導致跳出函數時資源沒有被釋放(A、B的析構函數沒有被調用)運行結果沒有輸出析構函數的內容,造成內存泄露。如果把其中一個改為weak_ptr就可以了,我們把類A里面的shared_ptr pb_,改為weak_ptr pb_ ,運行結果如下:

cpp
1 1 1 2 B delete A delete 

這樣的話,資源B的引用開始就只有1,當pb析構時,B的計數變為0,B得到釋放,B釋放的同時也會使A的計數減1,同時pa析構時使A的計數減1,那么A的計數為0,A得到釋放。

注意:我們不能通過weak_ptr直接訪問對象的方法,比如B對象中有一個方法print(),我們不能這樣訪問,pa->pb_->print(),因為pb_是一個weak_ptr,應該先把它轉化為shared_ptr,如:

1 shared_ptr<B> p = pa->pb_.lock();
2 p->print();

weak_ptr 沒有重載*和->但可以使用 lock 獲得一個可用的 shared_ptr 對象. 注意, weak_ptr 在使用前需要檢查合法性.

expired 用於檢測所管理的對象是否已經釋放, 如果已經釋放, 返回 true; 否則返回 false.

lock 用於獲取所管理的對象的強引用(shared_ptr). 如果 expired 為 true, 返回一個空的 shared_ptr; 否則返回一個 shared_ptr, 其內部對象指向與 weak_ptr 相同.

use_count 返回與 shared_ptr 共享的對象的引用計數.

reset 將 weak_ptr 置空.

weak_ptr 支持拷貝或賦值, 但不會影響對應的 shared_ptr 內部對象的計數.

share_ptr和weak_ptr的核心實現

weakptr的作為弱引用指針,其實現依賴於counter的計數器類和share_ptr的賦值,構造,所以先把counter和share_ptr簡單實現

Counter簡單實現

1 class Counter
2 {
3 public:
4     Counter() : s(0), w(0){};
5     int s;    //share_ptr的引用計數
6     int w;    //weak_ptr的引用計數
7 };

counter對象的目地就是用來申請一個塊內存來存引用基數,s是share_ptr的引用計數,w是weak_ptr的引用計數,當w為0時,刪除Counter對象。

share_ptr的簡單實現

 1 template <class T>
 2 class WeakPtr; //為了用weak_ptr的lock(),來生成share_ptr用,需要拷貝構造用
 3 
 4 template <class T>
 5 class SharePtr
 6 {
 7 public:
 8     SharePtr(T *p = 0) : _ptr(p)
 9     {
10         cnt = new Counter();
11         if (p)
12             cnt->s = 1;
13         cout << "in construct " << cnt->s << endl;
14     }
15     ~SharePtr()
16     {
17         release();
18     }
19 
20     SharePtr(SharePtr<T> const &s)
21     {
22         cout << "in copy con" << endl;
23         _ptr = s._ptr;
24         (s.cnt)->s++;
25         cout << "copy construct" << (s.cnt)->s << endl;
26         cnt = s.cnt;
27     }
28     SharePtr(WeakPtr<T> const &w) //為了用weak_ptr的lock(),來生成share_ptr用,需要拷貝構造用
29     {
30         cout << "in w copy con " << endl;
31         _ptr = w._ptr;
32         (w.cnt)->s++;
33         cout << "copy w  construct" << (w.cnt)->s << endl;
34         cnt = w.cnt;
35     }
36     SharePtr<T> &operator=(SharePtr<T> &s)
37     {
38         if (this != &s)
39         {
40             release();
41             (s.cnt)->s++;
42             cout << "assign construct " << (s.cnt)->s << endl;
43             cnt = s.cnt;
44             _ptr = s._ptr;
45         }
46         return *this;
47     }
48     T &operator*()
49     {
50         return *_ptr;
51     }
52     T *operator->()
53     {
54         return _ptr;
55     }
56     friend class WeakPtr<T>; //方便weak_ptr與share_ptr設置引用計數和賦值
57 
58 protected:
59     void release()
60     {
61         cnt->s--;
62         cout << "release " << cnt->s << endl;
63         if (cnt->s < 1)
64         {
65             delete _ptr;
66             if (cnt->w < 1)
67             {
68                 delete cnt;
69                 cnt = NULL;
70             }
71         }
72     }
73 
74 private:
75     T *_ptr;
76     Counter *cnt;
77 };

share_ptr的給出的函數接口為:構造,拷貝構造,賦值,解引用,通過release來在引用計數為0的時候刪除_ptr和cnt的內存。

weak_ptr簡單實現

 1 template <class T>
 2 class WeakPtr
 3 {
 4 public: //給出默認構造和拷貝構造,其中拷貝構造不能有從原始指針進行構造
 5     WeakPtr()
 6     {
 7         _ptr = 0;
 8         cnt = 0;
 9     }
10     WeakPtr(SharePtr<T> &s) : _ptr(s._ptr), cnt(s.cnt)
11     {
12         cout << "w con s" << endl;
13         cnt->w++;
14     }
15     WeakPtr(WeakPtr<T> &w) : _ptr(w._ptr), cnt(w.cnt)
16     {
17         cnt->w++;
18     }
19     ~WeakPtr()
20     {
21         release();
22     }
23     WeakPtr<T> &operator=(WeakPtr<T> &w)
24     {
25         if (this != &w)
26         {
27             release();
28             cnt = w.cnt;
29             cnt->w++;
30             _ptr = w._ptr;
31         }
32         return *this;
33     }
34     WeakPtr<T> &operator=(SharePtr<T> &s)
35     {
36         cout << "w = s" << endl;
37         release();
38         cnt = s.cnt;
39         cnt->w++;
40         _ptr = s._ptr;
41         return *this;
42     }
43     SharePtr<T> lock()
44     {
45         return SharePtr<T>(*this);
46     }
47     bool expired()
48     {
49         if (cnt)
50         {
51             if (cnt->s > 0)
52             {
53                 cout << "empty" << cnt->s << endl;
54                 return false;
55             }
56         }
57         return true;
58     }
59     friend class SharePtr<T>; //方便weak_ptr與share_ptr設置引用計數和賦值
60     
61 protected:
62     void release()
63     {
64         if (cnt)
65         {
66             cnt->w--;
67             cout << "weakptr release" << cnt->w << endl;
68             if (cnt->w < 1 && cnt->s < 1)
69             {
70                 //delete cnt;
71                 cnt = NULL;
72             }
73         }
74     }
75 
76 private:
77     T *_ptr;
78     Counter *cnt;
79 };

weak_ptr一般通過share_ptr來構造,通過expired函數檢查原始指針是否為空,lock來轉化為share_ptr。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM