对 Direct3D11 对象上使用 std::shared_ptr 的自定义删除程序

using a custom deleter for std::shared_ptr on a direct3d11 object

本文关键字:shared ptr 删除程序 自定义 std 对象 Direct3D11      更新时间:2023-10-16

当我使用 std::shared_ptr 并且需要自定义删除器时,我通常会为对象创建一个成员函数来方便它的破坏,如下所示:

class Example
{
public:
    Destroy();
};

然后当我使用共享 PTR 时,我只是让它像这样:

std::shared_ptr<Example> ptr(new Example, std::mem_fun(&Example::Destroy));

问题是,现在我正在使用 d3d11,我想将 com 发布函数用作 std::shared_ptr 自定义删除器,如下所示

std::shared_ptr<ID3D11Device> ptr(nullptr, std::mem_fun(&ID3D11Device::Release));

但是我收到此错误:

error C2784: 'std::const_mem_fun1_t<_Result,_Ty,_Arg> std::mem_fun(_Result (__thiscall _Ty::* )(_Arg) const)' : could not deduce template argument for '_Result (__thiscall _Ty::* )(_Arg) const' from 'ULONG (__stdcall IUnknown::* )(void)'

然后当我像这样显式指定模板参数时:

std::shared_ptr<ID3D11Device> ptr(nullptr, std::mem_fun<ULONG, ID3D11Device>(&ID3D11Device::Release));

我收到此错误,

error C2665: 'std::mem_fun' : none of the 2 overloads could convert all the argument types

有人可以解释为什么我不能将此功能用作删除器吗?

注意:不要建议我使用 CComPtr,我使用的是 msvc++ 速成版 :\

这个怎么样?

std::shared_ptr<ID3D11Device> ptr(nullptr, [](ID3D11Device* ptr){ptr->Release();} ); 

试试这个

struct Releaser{
    void operator()(ID3D11Device* p){
        p->Release();
    };
};

std::shared_ptr<ID3D11Device> ptr(nullptr, Releaser());