gpt4 book ai didi

C++ shared_ptr 从派生方法返回这个

转载 作者:行者123 更新时间:2023-11-30 01:08:11 25 4
gpt4 key购买 nike

我一直在用这个:

struct Bar;

struct Foo
{
virtual Bar * GetBar() { return nullptr; }
}

struct Bar : public Foo
{
virtual Bar * GetBar() { return this; }
}

Foo * b = new Bar();
//...
b->GetBar();

我用这个代替了慢速 dynamic_cast。现在我已经更改了我的代码以使用 std::shared_ptr

std::shared_ptr<Foo> b = std::shared_ptr<Bar>(new Bar());

如何更改 GetBar 方法以返回 std::shared_ptr 并获得与原始指针相同的功能(不需要 dynamic_cast)?

我试过这个:

 struct Foo : public std::enable_shared_from_this<Foo>
{
virtual std::shared_ptr<Bar> GetBar() { return nullptr; }
}


struct Bar : public Foo
{
virtual std::shared_ptr<Bar> GetBar() { return shared_from_this(); }
}

但是编译不过

最佳答案

std::enable_shared_from_this<Foo>::shared_from_this()返回 shared_ptr<Foo> .所以你需要一个明确的指针向下转型。

virtual std::shared_ptr<Bar> GetBar() {
return std::static_pointer_cast<Bar>(shared_from_this());
}

关于C++ shared_ptr 从派生方法返回这个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43170140/

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