6

当我使用 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++ express edition :\

4

2 回答 2

16

这个怎么样?

std::shared_ptr<ID3D11Device> ptr(nullptr, [](ID3D11Device* ptr){ptr->Release();} ); 
于 2012-11-29T20:35:52.693 回答
1

尝试这个

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

    };

};


std::shared_ptr<ID3D11Device> ptr(nullptr, Releaser());
于 2012-11-29T20:18:18.967 回答