GithubLink 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();
}
}
なんらかの理由で、コンパイル時にエラー C2448: 'List::showList' : function-style initializer appear to a function definition が表示され続けますが、宣言を文字ごとにコピーしたにもかかわらずです。だから私は途方に暮れており、助けを求めています。