c – unique_ptr operator =

c – unique_ptr operator =,第1张

概述std::unique_ptr<int> ptr;ptr = new int[3]; // error error C2679: binary '=' : no operator found which takes a right-hand operand of type 'int *' (or there is no acceptable conversion)
std::unique_ptr<int> ptr;ptr = new int[3];                // error
error C2679: binary '=' : no operator found which takes a right-hand operand of type 'int *' (or there is no acceptable conversion)

为什么没有编译?如何将native指针附加到现有的unique_ptr实例?

解决方法 首先,如果你需要一个独特的数组,就可以做到
std::unique_ptr<int[]> ptr;//              ^^^^^

这允许智能指针正确使用delete []取消分配指针,并定义operator []来模拟正常数组.

然后,operator =仅针对唯一指针而不是原始指针的rvalue引用定义,并且原始指针不能被隐式转换为智能指针,以避免意外分配,从而破坏唯一性.因此,原始指针不能直接分配给它.将正确的方法放在构造函数中:

std::unique_ptr<int[]> ptr (new int[3]);//                         ^^^^^^^^^^^^

或使用.reset函数:

ptr.reset(new int[3]);// ^^^^^^^          ^

或将原始指针显式转换为唯一指针:

ptr = std::unique_ptr<int[]>(new int[3]);//    ^^^^^^^^^^^^^^^^^^^^^^^          ^

如果可以使用C14,那么更喜欢make_unique function使用新的:

ptr = std::make_unique<int[]>(3);//    ^^^^^^^^^^^^^^^^^^^^^^^^^^
总结

以上是内存溢出为你收集整理的c – unique_ptr operator =全部内容,希望文章能够帮你解决c – unique_ptr operator =所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1251107.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存