C在数组中存储具有不同模板的相同类

我有以下课程:

template <typename T>
class A
{
public:
    void method(const char *buffer);
    // the template T is used inside this method for a local variable
};

现在我需要一个具有不同模板的类的实例数组,例如:

std::vector<A*> array;
array.push_back(new A<uint32_t>);
array.push_back(new A<int32_t>);

但是std :: vector< A *>阵列;不会工作,因为我显然需要指定一个模板,但我不能这样,因为我在这个数组中存储了不同的类型.是否有某种通用类型或其他解决方案?

解决方法:

你需要一个基类:

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# – 限制Windsor容器解析基于的对象


下一篇:linux – 为什么我的udev规则不能在正在运行的docker容器中运行?