2019年4月19日

c++ 中的智能指针实现

摘要: 摘要:C++11 中新增加了智能指针来预防内存泄漏的问题,在 share_ptr 中主要是通过“引用计数机制”来实现的。我们今天也来自己实现一个简单的智能指针: 1 // smartPointer.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 阅读全文

posted @ 2019-04-19 21:47 爱笑的张飞 阅读(222) 评论(0) 推荐(0) 编辑

导航