作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 C++ 中使用多态性,我尝试将所有派生类中的方法显示提取到基类中。
例如:
我有两个类,HouseA
和HouseB
,它们是模板类。它们派生自基类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;
}
但是派生类HouseA
和HouseB
都有方法getObject
。
BaseHouse
不能是模板类。有什么办法可以做到吗?
提前致谢。
最佳答案
如果派生成员的签名取决于模板参数(就像您的 getObject 对 Type 所做的那样),则无法将成员提取到非模板基中。至少在不移除成员签名根据模板参数变化的能力的情况下。
关于c++ - 如何将模板派生类的方法提取到非模板基类中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56306180/
我是一名优秀的程序员,十分优秀!