为什么这段代码不能使用 MS 编译器编译?
此代码确实可以使用 GNU gcc 编译器进行编译,但如果使用 Visual Studio 2008 编译器则不能进行编译。
错误 sas:“错误 C2143:语法错误:缺少 ';'在 '*'
Arbol::Nodo* 之前是一个指向 Arbol 内部类的指针,如果使用 codeblocks + gnu gcc 编译器编译,它可以正常工作,
template <class T>
Arbol<T>::Nodo<T>* Arbol<T>::Alta(Nodo<T>* &nodo,const T d) /////this line is highlited
{
return nodo;
}
这很奇怪,如果我取出该代码并再次编译,它会跳转到它下面的三个函数,并且 使用此函数会引发相同的错误
template<class T>
Arbol<T>::Nodo<T>* Arbol<T>::BuscarDevolver(const T t)
{
Nodo<T>* nodo = new Nodo<T>;
return nodo;
}
This code does compile using the GNU gcc compiler while doesn't if using the Visual Studio 2008 one.
the error sas: "error C2143: syntax error: missing ';' before '*'
Arbol::Nodo* is a pointer to the class inside Arbol that works ok if compiling using codeblocks + gnu gcc compiler.
template <class T>
Arbol<T>::Nodo<T>* Arbol<T>::Alta(Nodo<T>* &nodo,const T d) /////this line is highlited
{
return nodo;
}
It's weird, If I take out that code and compile again, it jumps three functions below it and
throws the same error with this function
template<class T>
Arbol<T>::Nodo<T>* Arbol<T>::BuscarDevolver(const T t)
{
Nodo<T>* nodo = new Nodo<T>;
return nodo;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加
typename
:您需要标记模板中显式类型的限定名称。
Add
typename
:You need to mark qualified names that are types explicitly within a template.