嵌套结构:在定义结构指针时无效使用非静态成员

时间:2015-12-18 02:24:59

标签: c++ struct nested static-members

这是一个链接列表的演示,我定义了一个Node结构,它的指针为head,但是编译器说:in - 在这个地方有效使用非静态成员:

Node* head;

此外,如果我不预先声明struct Node,它将报告未声明的节点。

代码如下:

#ifndef LINKLIST_H
#define LINKLIST_H

template<typename T>
class LinkList
{
    struct Node;        //why declaration is required here   ???

    public:
    //  member function
        Node* Find(T x);
    //.....

    private:
        struct Node
        {
            T data;
            Node* next;

         //   Node():next(NULL){}
            Node(const T& d=0, Node* n=NULL):data(d),next(n){}
        };

        Node* head;                //ERROR    ??????  why?
};

template<typename T>
typename LinkList<T>::Node* LinkList<T>::Find(T x)
{
    Node* ptr=head->next;   
   //.....

}

endif // LINKLIST_H

运行时错误:

||=== Build: Release in Broken Keyboard (compiler: GNU GCC Compiler) ===|
include\LinkList.h|41|error: invalid use of non-static data member 'LinkList<T>::head'|
include\LinkList.h|22|error: from this location|
include\LinkList.h|41|error: invalid use of non-static data member 'LinkList<T>::head'|
include\LinkList.h|95|error: from this location|
include\LinkList.h|95|error: default argument given for parameter 1 of 'void LinkList<T>::Insert(T, LinkList<T>::Node*)' [-fpermissive]|
include\LinkList.h|22|error: after previous specification in 'void LinkList<T>::Insert(T, LinkList<T>::Node*)' [-fpermissive]|
include\LinkList.h|95|error: default argument given for parameter 2 of 'void LinkList<T>::Insert(T, LinkList<T>::Node*)'|
include\LinkList.h|22|error: after previous specification in 'void LinkList<T>::Insert(T, LinkList<T>::Node*)'|
||=== Build failed: 8 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|

1 个答案:

答案 0 :(得分:0)

结构节点的第一个前向声明是必需的,因为在提供节点定义之前在Find方法中使用它。 但是你不应该在Node * head中出错。我在Visual Studio 2015中尝试过您的代码并在main中实例化模板,没有错误。

您的编译器版本是什么?

阿龙。