gpt4 book ai didi

c++ - 如何将模板派生类的方法提取到非模板基类中

转载 作者:行者123 更新时间:2023-11-28 01:20:59 26 4
gpt4 key购买 nike

我想在 C++ 中使用多态性,我尝试将所有派生类中的方法显示提取到基类中。

例如:

我有两个类,HouseAHouseB,它们是模板类。它们派生自基类BaseHouse

class BaseHouse
{
public:
//other thing
private:
};

template <typename Type>
class HouseA : public BaseHouse
{
public:
HouseA(Type object_input) : object(object_input)
{
}
// other thing about HouseA
Type &getObject()
{
std::cout << "this is House A" << std::endl;
return object;
}

private:
Type object;
};

template <typename Type>
class HouseB : public BaseHouse
{
public:
HouseB(Type object_input) : object(object_input)
{
}
// other thing about HouseB
Type &getObject()
{
std::cout << "this is House B" << std::endl;
return object;
}

private:
Type object;
};

由于多态性,我们使用基类的指针来访问派生类对象。当我需要调用派生类中定义的方法时,我总是将基类指针传递给派生类指针:

int main()
{
HouseA<int> house_a(5);
int x = house_a.getObject();

BaseHouse *base_ptr = &house_a;

// suppose after some complicate calculate calculation
// we only have the base class pointer can access derivated class object

HouseA<int> *ptr_a = (HouseA<int> *)base_ptr; //transfer base class pointer into derivated class pointer
ptr_a->getObject();
return 0;
}

但是派生类HouseAHouseB都有方法getObject

所以我想把模板派生类的方法提取到非模板基类中。

由于某些原因,我们假设基类BaseHouse 不能是模板类。

有什么办法可以做到吗?

提前致谢。

最佳答案

如果派生成员的签名取决于模板参数(就像您的 getObject 对 Type 所做的那样),则无法将成员提取到非模板基中。至少在不移除成员签名根据模板参数变化的能力的情况下。

关于c++ - 如何将模板派生类的方法提取到非模板基类中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56306180/

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