设为首页 加入收藏

TOP

<四>智能指针之__自定义删除器
2023-07-23 13:36:05 】 浏览:30
Tags:< > 能指针

unique_ptr的成员函数在上一篇博客中几乎全部涵盖,其实还有一个很有踢掉,即std::unique_ptr::get_deleter字面已经很明显了,就获得deleter

智能指针采通过引用计数我们能解决多次释放同一块内存空间的问题,并且和之间直接移交管理权的方式比较这种方式更加灵活安全。
但是这种方式也只能处理new出来的空间因为new要和析构中的delete匹配,为了使能和new,malloc,fopen的管理空间匹配,我们需要定制删除器

通过自定义删除器,可以实现一些场景下的资源释放和删除.

代码1

#include <iostream>
#include <thread>
using namespace std;

template <typename T>
class MyArrayDeletor {
public:
	void operator()(T *p ){
		cout << "call MyArrayDeletor" << endl;
		delete[] p;
		p = nullptr;
	}
	
};


int main() {
	{
	  unique_ptr<int, MyArrayDeletor<int>> ptr(new int[100]);
	}

	system("pause");
	return 0;
}

代码2,删除器_文件

#include <iostream>
#include <thread>
using namespace std;

template <typename T>
class MyFileDeletor {
public:
	void operator()(T *p) const {
		cout << "call MyFileDeletor" << endl;
		fclose(p);
		p = nullptr;
	}

};

int main() {
	{
	  unique_ptr<FILE, MyFileDeletor<FILE>> ptr(fopen("2.txt","w"));
	}

	system("pause");
	return 0;
}
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇<一>通过thread类编写C++多.. 下一篇<五>基于CAS操作的atomic原..

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目