一個簡單的智能指針實現(xiàn)
學(xué)習(xí)這個代碼有助于理解shared_ptr指針的實現(xiàn)方法
smart.cpp
1 namespace smart
2 {
3 // 引用計數(shù)類.
4 class smart_count
5 {
6 public:
7 smart_count(int c = 0) : use_count(c) {}
8 ~smart_count() {}
9
10 // 增加引用計數(shù), 并返回計數(shù)值.
11 int addref() { return ++use_count; }
12 // 減少引用計數(shù), 并返回計數(shù)值.
13 int release() { return --use_count; }
14
15 private:
16 // 計數(shù)變量.
17 int use_count;
18 };
19
20 // 智能指針.
21 template
22 class smart_ptr
23 {
24 public:
25 // 構(gòu)造指針, 并使引用計數(shù)置為1.
26 explicit smart_ptr (T* ptr) : p(ptr), u(new smart_count(1))
27 {}
28
相關(guān)推薦:
2010年9月計算機(jī)等級考試成績查詢時間匯總
2011年計算機(jī)等級考試二級C++輔導(dǎo)筆記匯總
2011年上半年計算機(jī)等級考試報名時間匯總
2011計算機(jī)等級考試二級C++輔導(dǎo)實例編程匯總