为什么这段代码不能使用 MS 编译器编译?

发布于 2024-12-06 19:35:28 字数 638 浏览 0 评论 0原文

此代码确实可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以歌曲疗慰 2024-12-13 19:35:28

添加typename

template <class T>
typename Arbol<T>::Nodo<T>* Arbol<T>::Alta(Nodo<T>* &nodo,const T d) /////this line is highlited
{
     return nodo;
}

您需要标记模板中显式类型的限定名称。

Add typename:

template <class T>
typename Arbol<T>::Nodo<T>* Arbol<T>::Alta(Nodo<T>* &nodo,const T d) /////this line is highlited
{
     return nodo;
}

You need to mark qualified names that are types explicitly within a template.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文