#include <iostream> #include <string> #include <cstring> #include <cstdlib> #include <cstdio> #include <cmath> #include <vector> #include <stack> #include <deque> #include <queue> #include <bitset> #include <list> #include <map> #include <set> #include <iterator> #include <algorithm> #include <functional> #include <utility> #include <sstream> #include <climits> #include <cassert> #include <stdexcept> #define BUG puts("here!!!"); using namespace std; class Stub { public : void show() { printf("Stub showed!"); } ~Stub() { cout << "Stub : Destructor" << endl; } }; template <typename T> class Handle { public : Handle(T *p = 0) : ptr(p), pUse(new size_t(1)) {} Handle(const T& src) : ptr(src.ptr), pUse(src.pUse) { *pUse++; } Handle& operator= (const Handle &rhs) { ++*rhs.pUse; decrUse(); ptr = rhs.ptr; pUse = rhs.pUse; return *this; } T *operator-> () { if(ptr) return ptr; throw std::runtime_error("NULL point"); } const T *operator-> () const { if(ptr) return ptr; throw std::runtime_error("NULL point"); } T &operator* () { if(ptr) return *ptr; throw std::runtime_error("NULL point"); } const T &operator* () const { if(ptr) return *ptr; throw std::runtime_error("NULL point"); } ~Handle() { decrUse(); std::cout << "Handle destructor" << endl; } private : void decrUse() { --(*pUse); // if(*pUse == 0) { delete ptr; delete pUse; } } T *ptr; size_t *pUse; }; int main() { try { Handle<Stub> t; t->show(); } catch (const exception& err) { cout << err.what() << endl; } BUG Handle<Stub> t1(new Stub); Handle<Stub> t2(t1); (*t2).show(); return 0; }
[C/C++] Very very good !!! 句柄类
转载
方案二
为了避免上面方案中每个使用指针的类自己去控制引用计数,可以用一个类把指针封装起来。封装好后,这个类对象可以出现在用户类使用指针的任何地方,表现为一个指针的行为。我们可以像指针一样使用它,而不用担心普通成员指针所带来的问题,我们把这样的类叫句柄类。在封装句柄类时,需要申请一个动态分配的引用计数空间,指针与引用计数分开存储。实现示例如下:
本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
very good
发现51cto的邮件营销做得很好,定期的邮件杂志,让我会开始关注51cto。
职场 杂志 休闲 邮件营销 -
Chap5:jni教程(very very good)
Chap5:jni教程(very very go
Java java 共享库 -
C/C++ 什么是句柄
句柄是一个指向指针的指针。 一个指向指针的指针保存的是另一个指针的地址,我们
C/C++ 数据 句柄 内存空间