这段代码接收多个输入文件,然后使用getline函数将输入文件中的行放入一个链接列表中。我猜想在创建链接列表的过程中出现了问题,因为它给出了一个错误信息 "错误C2039:'down':不是'Functions'的成员" 以及标题上的指定错误。我不知道 C2130 & C4430 错误。
#include <iostream>
#include <fstream>
#include <string>
#include "strutils.h"
using namespace std;
struct Functions
{
string fname;
Functions *right;
Commands *down;
};
struct Commands
{
string command;
Commands *next;
};
Functions *head = nullptr;
Functions *temp = nullptr;
void printLinkedList()
{
Functions *ptr = head;
while (ptr != nullptr)
{
cout << ptr->fname << endl;
while (ptr->down != nullptr)
{
cout << ptr->down->command + " ";
ptr->down = ptr->down->next;
}
cout << endl;
ptr = ptr->right;
}
}
你需要向前声明 Commands
结构。
struct Commands;
struct Functions
{
string fname;
Functions *right;
Commands *down;
};
struct Commands
{
string command;
Commands *next;
};
增加一个正向声明: Commands
之前 Functions
:
struct Commands;
struct Functions {
...
}