auto_ptr is not dereferencable
错误如下图所示:错误代码示例: Example : Transferring ownership from one auto_ptr to anothervoi...
2016-10-24 17:51:18
auto_ptr is not dereferencable
错误如下图所示:错误代码示例: Example : Transferring ownership from one auto_ptr to anothervoi...
scoped_ptr 与 auto_ptr 与 shared_ptr 区别总结
1.auto_ptr 被复制后,将失去原来所致资源的所有权;2.scoped_ptr永远不能被复制或被赋值!scoped_ptr拥有它所指向的资源的所有权,并永远不会放弃这个所有权;3.shared_ptr 是可以共享所有权的智能指针。