gpt4 book ai didi

c++ - 为什么我不能从一对中返回一个 unique_ptr?

转载 作者:可可西里 更新时间:2023-11-01 18:28:17 25 4
gpt4 key购买 nike

为什么我不能从一对中返回一个 unique_ptr?

#include <iostream>
#include <memory>
#include <utility>

using namespace std;

unique_ptr<int> get_value() {
pair<unique_ptr<int>, int> p(unique_ptr<int>(new int(3)), 4);
return p.first;
}

int main(void) {
cout << *get_value() << endl;
return 0;
}

当我尝试使用 g++ 4.6 编译它时,我得到:

../main.cpp: In function ‘std::unique_ptr<int> get_value()’:
../main.cpp:9:11: error: use of deleted function ‘std::unique_ptr<_Tp, _Dp>::unique_ptr(const std::unique_ptr<_Tp, _Dp>&) [with _Tp = int, _Dp = std::default_delete<int>, std::unique_ptr<_Tp, _Dp> = std::unique_ptr<int>]’
/usr/include/c++/4.6/bits/unique_ptr.h:256:7: error: declared here
make: *** [main.o] Error 1

我不明白错误信息

最佳答案

std::unique_ptr 没有复制构造函数,并且您返回它的方式(作为本地对象的成员)不符合自动移动的条件。在这种情况下,您需要手动指定移动。

return std::move(p.first);

关于c++ - 为什么我不能从一对中返回一个 unique_ptr?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20650997/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com