以下代码摘录负责神秘的 MSVC++ 编译器错误:
template<class T> class Vec : public vector<T>{
public:
Vec() : vector<T>(){}
Vec(int s) : vector<T>(s){}
T& operator[](int i){return at(i); }
const T& operator[](int i)const{ return at(i);}
};
...
错误:
test.cpp(5) : error C2143: syntax error : missing ',' before '<'
test.cpp(12) : see reference to class template instantiation 'Vec<T>' being compiled
我该如何解决?
- -编辑 - -
一些上下文:
我正在尝试编译代码,基本上是从The C++ Programming Language复制和粘贴的。我什至还没有完全理解这段代码。然而,其目的是实现一个向量类型,当某些代码尝试访问向量范围之外的项目时,该向量类型将引发异常,而不是仅仅返回不正确的值。