gpt4 book ai didi

c++ - 我收到错误 'List::showList' : function-style initializer appears to be a function definition' on a function in my cpp file

转载 作者:行者123 更新时间:2023-11-28 07:54:24 25 4
gpt4 key购买 nike

Github链接https://github.com/leomdmfiel/Assignment/tree/master/BankManager/BankManager首先是我的标题:

class List
{
protected:
Node* head;
public:
List(object data);
void addNode(Node* headRef, object data);
void removeNode();
void showList(Node* headRef);
};

这里是函数 showList

void List::showList(Node* headRef)
{ Node* current = headRef;
while (current != NULL)
{
cout << current->retrieveData();
current = current->retrieveNext();
}
}

由于某种原因,在编译时它一直给我错误 error C2448: 'List::showList' : function-style initializer appears to be a function definition 即使我已经一个字母一个字母地复制了声明。所以我很茫然,正在寻求帮助。

最佳答案

现在我已经看到了你多了一个分号的代码

#include"List.h";

应该是

#include"List.h"

我本以为会有更好的错误消息,但我必须承认。

关于c++ - 我收到错误 'List::showList' : function-style initializer appears to be a function definition' on a function in my cpp file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13076869/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com