博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c++ 中的智能指针实现
阅读量:5118 次
发布时间:2019-06-13

本文共 1752 字,大约阅读时间需要 5 分钟。

摘要:C++11 中新增加了智能指针来预防内存泄漏的问题,在 share_ptr 中主要是通过“引用计数机制”来实现的。我们今天也来自己实现一个简单的智能指针:

1 // smartPointer.cpp : 定义控制台应用程序的入口点。 2 // 3  4 #include "stdafx.h" 5 #include 
6 #include
7 8 using namespace std; 9 10 11 class Person12 {13 public:14 Person(){ count = 0; };15 ~Person() { };16 void inc(){ count++; }17 void dec(){ count--; }18 int getCount(){ return count; }19 void printInfo() {20 cout << "just a test function" << endl;21 }22 23 private:24 int count; // 增加类的计数成员,在执行智能指针对象的析构函数时,进行判断是否要 delete 这个对象25 };26 27 28 class smartPointer29 {30 public:31 smartPointer(){ p = nullptr; };32 smartPointer(Person *other); // 带参构造函数33 smartPointer(smartPointer &other) { // 拷贝构造函数34 p = other.p;35 p->inc();36 }37 Person *operator->() { // 重载 ->38 return p;39 }40 Person& operator*() { // 重载 *41 return *p;42 }43 44 ~smartPointer();45 private:46 Person *p;47 };48 49 smartPointer::smartPointer(Person *other) {50 cout << "Person()" << endl;51 p = other;52 p->inc();53 }54 55 smartPointer::~smartPointer()56 {57 cout << "~Person()" << endl;58 if (p) {59 p->dec();60 if (p->getCount() == 0) {61 delete p;62 p = nullptr;63 }// if 64 }//if65 }66 67 void test_func(smartPointer& other) {68 smartPointer s = other;69 s->printInfo();70 }71 72 73 int _tmain(int argc, _TCHAR* argv[])74 {75 smartPointer sp = new Person(); // 调用带参构造函数( sp 对象中的指针 p 指向构造的 Person 对象)76 (*sp).printInfo();77 78 system("pause");79 return 0;80 }
smartPointer

 

参考博客:

转载于:https://www.cnblogs.com/zpcoding/p/10739044.html

你可能感兴趣的文章
background-clip,background-origin
查看>>
Android 高级UI设计笔记12:ImageSwitcher图片切换器
查看>>
Blog文章待看
查看>>
【Linux】ping命令详解
查看>>
对团队成员公开感谢博客
查看>>
java学习第三天
查看>>
python目录
查看>>
django+uwsgi+nginx+sqlite3部署+screen
查看>>
Andriod小型管理系统(Activity,SQLite库操作,ListView操作)(源代码下载)
查看>>
在Server上得到数据组装成HTML后导出到Excel。两种方法。
查看>>
浅谈项目需求变更管理
查看>>
经典算法系列一-快速排序
查看>>
设置java web工程中默认访问首页的几种方式
查看>>
ASP.NET MVC 拓展ViewResult实现word文档下载
查看>>
jQuery Mobile笔记
查看>>
8、RDD持久化
查看>>
第二次团队冲刺--2
查看>>
VMware Tools安装
查看>>
Linux上架设boost的安装及配置过程
查看>>
[转载]加密算法库Crypto——nodejs中间件系列
查看>>