C++ store same classes with different templates in array(C ++在数组中存储具有不同模板的相同类)
本文介绍了C ++在数组中存储具有不同模板的相同类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下课程:
template <typename T>
class A
{
public:
void method(const char *buffer);
// the template T is used inside this method for a local variable
};
现在我需要一个具有不同模板的此类实例数组,例如:
Now I need an array of instances of this class with different templates like:
std::vector<A*> array;
array.push_back(new A<uint32_t>);
array.push_back(new A<int32_t>);
但是std::vector;array;
不起作用,因为我显然需要指定一个模板,但我不能这样做,因为我在这个数组中存储了不同的类型.是否有某种泛型类型或其他解决方案?
But std::vector<A*> array;
wont work, because I apparently need to specify a Template, but i can't so that because I store different types in this array. Is there some kind of generic type or an other solution?
推荐答案
你需要一个基类:
class ABase {
public:
virtual void method(const char *) = 0;
virtual ~ABase() { }
};
template <typename T>
class A : public ABase
{
public:
virtual void method(const char *);
};
然后像这样使用它
std::vector<ABase*> array;
array.push_back(new A<uint32_t>);
array.push_back(new A<int32_t>);
这篇关于C ++在数组中存储具有不同模板的相同类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:C ++在数组中存储具有不同模板的相同类
基础教程推荐
猜你喜欢
- 分别使用%o和%x以八进制或十六进制格式显示整 1970-01-01
- 使用scanf()读取字符串 1970-01-01
- C++定义类对象 1970-01-01
- C++ #define 1970-01-01
- end() 能否成为 stl 容器的昂贵操作 2022-10-23
- 明确指定任何或所有枚举数的整数值 1970-01-01
- C++按值调用 1970-01-01
- C++输入/输出运算符重载 1970-01-01
- 初始化变量和赋值运算符 1970-01-01
- C语言访问数组元素 1970-01-01