我想用 a 替换我类中的一些原始指针,std::shared_ptr
这样我在创建该类的副本时就不必担心。但是原始指针指向一个动态数组。当您给它一个自定义删除器时,可以将 shared_ptr 与动态数组一起使用,例如。G。default_delete<T[]>
.
但是,一旦我尝试为该字段分配新值,即使在构造时,我也会得到一个很大的错误列表。
这是一个最小的代码示例:
#include <memory>
#include <cstddef>
using namespace std;
template<typename T> shared_ptr<T[]> make_shared_array(size_t size)
{
return shared_ptr<T[]>(new T[size], default_delete<T[]>());
}
struct Foo
{
shared_ptr<char[]> field;
};
int main()
{
Foo a;
// This line produces the error.
a.field = make_shared_array<char>(256);
return 0;
}
注意:是的,我知道我可以/应该vector
代替动态数组。但他们的表现并不相同。我做了一些繁重的图像处理,并且数组保存了像素。在低于 VGA 分辨率的情况下,处理时间从 8 秒增加到 11 秒。这是相当多的。
更新:当然我可以在这里提供错误。我只是不知道我是否应该用它来混淆问题描述。但这里是:
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\INCLUDE\memory(754):错误 C2664:'std::_Ptr_base<_Ty>::_Reset0':无法将参数 1 从 'char ' 转换为 'char ( )[]'
与
[
_Ty=char []
]
指向的类型不相关;转换需要 reinterpret_cast、C 样式转换或函数样式转换
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\INCLUDE\memory(723):请参阅对函数模板实例化的参考 'void std::shared_ptr<_Ty >::_Resetp0<_Ux>(_Ux *,std::_Ref_count_base *)' 正在
使用
[
_Ty=char [] 编译,
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\INCLUDE\memory(723) :参见对函数模板实例化的参考 'void std::shared_ptr<_Ty>::_Resetp0<_Ux>(_Ux *,std: :_Ref_count_base *)' 正在
使用
[
_Ty=char [],
_Ux=char
]
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\INCLUDE\memory(494) 编译:参见对函数模板实例化的参考 'void std::shared_ptr<_Ty>::_Resetp<_Ux,_Dx>(_Ux *,_Dx)' 正在编译 [ _Ty=char [],
_Ux =char, _Dx=std::default_delete ]
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\INCLUDE\memory(494) :参见对函数模板实例化的引用 'void std::shared_ptr<_Ty>::_Resetp<_Ux,_Dx>(_Ux *, _Dx)' 正在
使用
[
_Ty=char [],
_Ux=char,
_Dx=std::default_delete
]编译
问题.cpp(9) :参见对函数模板实例化 'std::shared_ptr<_Ty>::shared_ptr>( _Ux *,_Dx)'
使用
[
_Ty=char [],
T=char,
_Ux=char,
_Dx=std::default_delete
]编译
problem.cpp(9) : 请参阅
使用
[
_Ty=char [],
T=char,
_Ux=char,编译的函数模板实例化 'std::shared_ptr<_Ty>::shared_ptr>(_Ux *,_Dx)' 的参考
_Dx=std::default_delete
]
problem.cpp(21) : 请参阅
使用
[
_Ty=char []
] 编译的函数模板实例化 'std::shared_ptr<_Ty> make_shared_array(size_t)' 的参考