c – unique_ptr operator =

前端之家收集整理的这篇文章主要介绍了c – unique_ptr operator =前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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);
//    ^^^^^^^^^^^^^^^^^^^^^^^^^^
原文链接:https://www.f2er.com/c/113296.html

猜你在找的C&C++相关文章