如何在不转换回基类类型的情况下返回派生类型的对象?

How to return an object in its derived type without converting back to base class type?

本文关键字:类型 返回 情况下 派生 对象 基类 转换      更新时间:2023-10-16

首先,我真的很抱歉标题,但我不知道如何正确表达我的问题。无论如何,我弄乱了C++和Allegro 5创建相同的游戏,只是使用更复杂的技术进行练习。现在我正在尝试使用实体和组件,但我遇到了一个障碍。

this->entity = new Entity();
this->entity->addComponent(new ComponentTest());
// How I currently access components
ComponentTest *c = (ComponentTest*)this->entity->getComponent("test");
c->setVariable(10);
// This would be cool
this->entity->getComponent("test")->setVariable(10);
// This would be completely rad
this->entity["test"]->setVariable(10);

问题是 Entity::getComponent 返回一个指向组件的指针,所以我必须将其显式转换回 ComponentTest 才能使用其方法 ComponentTest::setVariable。

我只是在徘徊,如果有某种方法可以使用我提到的其他两种访问方式。我也愿意接受有关更改代码的某种方法的建议,以便更轻松地访问实体的组件。

tl;dr:懒得显式转换组件。是否可以通过其他两种方式访问组件?

您可以在实体中定义模板函数,如下所示:

template<typename T>
T* getComponent(const std::string &componentName)
{
Component *component = getComponent(componentName);
return dynamic_cast<T*>(component);
}

并像@Jarod42提到的那样称呼它。