2

我在返回指向在类中声明的结构的指针时遇到一些问题。到目前为止,这是我的代码:

排序列表.h

#ifndef SORTEDLIST_H
#define SORTEDLIST_H

class SortedList{

 public:

    SortedList();

 ...

 private:

    struct Listnode {    

      Student *student;

      Listnode *next;

    };

    static Listnode *copyList (Listnode *L);

};

#endif

排序列表.cpp

#include "SortedList.h"

...

// Here is where the problem lies

Listnode SortedList::*copyList(Listnode *L)

{

    return 0; // for NULL

}

显然,复制列表方法不会编译。我正在使用 Microsoft Visual Studio,编译器告诉我“Listnode”身份不明。当我尝试编译时,这是我得到的:

1>------ Build started: Project: Program3, Configuration: Debug Win32 ------

1>  SortedList.cpp

sortedlist.cpp(159): error C2657: 'SortedList::*' found at the start of a statement (你忘了指定类型吗?)

sortedlist.cpp(159):错误 C4430:缺少类型说明符 - 假定为 int。注意:C++ 不支持默认整数

sortedlist.cpp(159):错误 C2065:“L”:未声明的标识符

sortedlist.cpp(159):错误 C4430:缺少类型说明符 - 假定为 int。注意:C++ 不支持默认整数

sortedlist.cpp(159):致命错误 C1903:无法从先前的错误中恢复;停止编译

========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

帮助将不胜感激...尽快

4

1 回答 1

2

在 cpp 文件中,函数应定义为:

SortedList::Listnode* SortedList::copyList(ListNode* L)
{
    return 0; //For NULL
}

此外,struct Listnode应该publicclass SortedList.

于 2012-11-13T04:56:46.453 回答