gpt4 book ai didi

c++ - 从 C++ 函数返回指针或引用

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

当你想从一个方法返回一个实例时,你是创建对象并发回一个指针,还是一个引用?正确的方法和方法签名是什么?

最佳答案

在 C++ 中有很多方法可以做到这一点。不幸的是,它们中的大多数导致混淆谁负责分配和释放对象。我推荐两种方法:

// Return a real object, automatic stack allocation.
Foo GetFoo1()
{
Foo f;
// Init f.
return f;
}

// Use a smart, reference counted pointer that handles deallocation itself.
boost::shared_ptr<Foo> GetFoo2()
{
boost::shared_ptr<Foo> f(new Foo);
// Init f
return f;
}

关于c++ - 从 C++ 函数返回指针或引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3534517/

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