gpt4 book ai didi

c++ - 如何在没有直接继承的情况下访问基类容器中的派生对象

转载 作者:行者123 更新时间:2023-11-28 05:49:24 26 4
gpt4 key购买 nike

我知道我可以在 static_cast<derived_class*>(base_class_ptr) 的帮助下将容器中的指向基类的指针转换为指向派生类的指针 .

但是如果他们没有直接关系,但只有一个共同的 child ,我该怎么办。看下面的例子:

#include <iostream>
#include <string>
#include <vector>
#include <memory>

class Item
{
public:
Item(std::string name): _name(name) { /* */ };

private:
std::string _name;
};
class Readable
{
public:
Readable(std::string content): _content(content) { /* */ };
virtual auto content(void) const -> std::string
{
return this->_content;
}

private:
std::string _content;
};
class Book: public Item, public Readable
{
public:
Book(std::string name, std::string content): Item(name), Readable(content) { /* */ };
};

class Person
{
public:
auto read(const Readable& readable) const noexcept
{
std::cout << readable.content() << '\n';
}
};

int main(void)
{
auto i0 = std::make_unique<Item>("Pot");
auto i1 = std::make_unique<Item>("Shoe");
auto b0 = std::make_unique<Book>("Death of a Salesman", "Blablablabla...");

std::vector<std::unique_ptr<Item>> container;
container.emplace_back(std::move(i0));
container.emplace_back(std::move(i1));
container.emplace_back(std::move(b0));

Person jonnie{};
jonnie.read(static_cast<Readable*>(container[2].get())) // Error!
}

我想读一本Book来自 Item s 容器,那应该没问题,因为它继承自 Readable ,但我不能,因为编译器会提示:

static_cast from 'pointer' (aka 'Item *') to 'Readable *', which are not related by inheritance, is not allowed   

遇到这种情况怎么办?有没有干净的解决方案?

最佳答案

您正在寻找围绕必须是 polymorphic 的对象进行转换;他们需要一个虚拟方法。最简单的(我认为在这种情况下是最好的)是使析构函数 virtual对于所有基类,例如;

class Item
{
public:
virtual ~Item() { /* */ };
// .. the rest of the class
};

这允许 dynamic_cast<> 为了在运行时工作(它适用于多态类型),它将检查并适本地转换对象。这里的一个警告(考虑到 OP 中的示例使用)是您几乎肯定必须根据 nullptr 检查返回值。检查转换是否成功。

关于c++ - 如何在没有直接继承的情况下访问基类容器中的派生对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35574882/

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