作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道我可以在 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/
我是一名优秀的程序员,十分优秀!