我正在尝试修改一些代码,以便在我的 mysh.cpp 文件中包含和使用双向链表,我得到了
error: aggregate ‘linked_list list’ has incomplete type and cannot be defined
在编译。readcommand.cpp 编译得很好,所以我只是想弄清楚头文件或 cpp 文件中需要更改的内容,以使其在 mysh 中顺利运行。
以下是使用的文件的相关部分:
mysh.cpp
#include "readcommand.h"
using namespace std;
int main (int argc, char** argv) {
readcommand read;
linked_list list; // THIS is the line that's causing the error
...
}
读取命令.h
#ifndef READCOMMAND_H
#define READCOMMAND_H
#include <cstdio>
#include <iostream>
#include <cstring>
#include <cstdlib>
class readcommand {
public:
// Struct Definitions
typedef struct node node_t;
typedef struct linked_list linked_list_t;
struct node;
struct linked_list;
...
};
#endif
读取命令.cpp
#include "readcommand.h"
using namespace std;
struct node {
const char *word;
node *prev;
node *next;
};
struct linked_list {
node *first;
node *last;
};
...
自从我在 c++ 或一般语言中使用标题以来已经有一段时间了。我已经尝试将有问题的行更改为
read.linked_list list;
和
read.linked_list list = new linked_list;
等等,但它只是将错误更改为
error: ‘class readcommand’ has no member named ‘linked_list’
和
error: invalid use of ‘struct readcommand::linked_list’
提前谢谢。