一個(gè)簡單的智能指針實(shí)現(xiàn)
學(xué)習(xí)這個(gè)代碼有助于理解shared_ptr指針的實(shí)現(xiàn)方法
smart.cpp
1 namespace smart
2 {
3 // 引用計(jì)數(shù)類.
4 class smart_count
5 {
6 public:
7 smart_count(int c = 0) : use_count(c) {}
8 ~smart_count() {}
9
10 // 增加引用計(jì)數(shù), 并返回計(jì)數(shù)值.
11 int addref() { return ++use_count; }
12 // 減少引用計(jì)數(shù), 并返回計(jì)數(shù)值.
13 int release() { return --use_count; }
14
15 private:
16 // 計(jì)數(shù)變量.
17 int use_count;
18 };
19
20 // 智能指針.
21 template
22 class smart_ptr
23 {
24 public:
25 // 構(gòu)造指針, 并使引用計(jì)數(shù)置為1.
26 explicit smart_ptr (T* ptr) : p(ptr), u(new smart_count(1))
27 {}
28
相關(guān)推薦:2010年9月計(jì)算機(jī)等級考試成績查詢時(shí)間匯總
2011年計(jì)算機(jī)等級考試二級C++輔導(dǎo)筆記匯總
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |