gpt4 book ai didi

c++ - 如何防止内存从 unique_ptr 松散

转载 作者:太空宇宙 更新时间:2023-11-03 10:25:13 27 4
gpt4 key购买 nike

下面这段代码会导致内存丢失,因为rA在构造时被初始化为无效。我什么时候可以解决这个问题?

使用 shared_ptr 还是希望 future 的编译器版本能够捕获这些错误代码?

#include <memory>
using namespace std;

struct A {};
void use(const A& a) {};

unique_ptr<A> foo()
{
unique_ptr<A> pa(new A());
return pa;
}

int main()
{
const A& rA = *foo(); // rA is unusable, initialized with invalid reference (invalidated by destruction of temporary unique_ptr returned from foo)
use(rA);
}

最佳答案

将你的 main 重写为:

int main()
{
auto a = foo();

use(*a);
}

顺便说一句,我会将 foo 重写为:

std::unique_ptr<A> foo()
{
return std::make_unique<A>();
}

关于c++ - 如何防止内存从 unique_ptr 松散,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37985886/

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