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