MSVC编译器错误C2143
作者:互联网
以下代码摘录是一个秘密的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复制和粘贴的代码.我什至还没有完全理解这段代码.但是,目的是实现一种向量类型,当某些代码尝试访问向量范围之外的项目而不是仅返回不正确的值时,该向量类型将引发异常.
解决方法:
尝试
template<class T> class Vec : public vector<T>{
public:
Vec() : vector(){} // no <T>
Vec(int s) : vector(s){} // same
T& operator[](int i){return at(i); }
const T& operator[](int i)const{ return at(i);}
};
模板类的构造函数的名称中不包括模板签名.
顺带一提,您的第二个构造函数实际上应该是
Vec(typename vector<T>::size_type s) : vector(s){} // not necessarily int
最后,您真的不应该从向量派生,因为它具有非虚拟的析构函数.不要试图通过指向矢量的指针删除Vec.
标签:c,compiler-errors,visual-c 来源: https://codeday.me/bug/20191014/1912241.html