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;
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。