与 C++ 基础相关。我正在创建一个单链表。
class Linked_List
{
public: Linked_List();
~Linked_List();
//Member Functions
struct node* getHead(void);
private:
struct node{
int d;
struct node* next;
}*head;
};
struct node (Linked_List::*getHead)(void)
{
return head;
}
我收到此错误:
“错误 C2470:'getHead':看起来像一个函数定义,但没有参数列表;跳过明显的主体”。
我试图在谷歌搜索,但没有用。任何建议请。