我有一个类似的模板类:
template <class TYPE>
class Temp {
public:
Temp(TYPE _val) : var(_val){};
TYPE var;
};
我想将这个模板类上的对象存储在 STL 容器中,比如向量。
void print(vector<Temp<TYPE> *> & _vec) {
for(unsigned short i = 0; i < _vec.size() ; i++)
cout << " Value of stored variable is : " << (*_vec[i]).var << endl;
}
int main(int argc, char* argv[]) {
vector<Temp<TYPE> *> cont;
Temp<int> t1(20);
Temp<float> t2(1.4);
cont.push_back(&t1);
cont.push_back(&t2);
return 0;
}
我知道我们不能在不定义类型的情况下分配 stl 容器。有什么办法可以完成这项工作吗?而且我不能使用 boost.variant。