当我尝试编译这段代码时,我遇到了这个结构构造函数的问题:
typedef struct Node
{
Node( int data ) //
{
this->data = data;
previous = NULL; // Compiler indicates here
next = NULL;
}
int data;
Node* previous;
Node* next;
} NODE;
当我来的时候,这个错误发生了:
\linkedlist\linkedlist.h||In constructor `Node::Node(int)':|
\linkedlist\linkedlist.h|9|error: `NULL' was not declared in this scope|
||=== Build finished: 1 errors, 0 warnings ===|
最后一个问题是 struct,但是它在 main.cpp 中工作得很好,这次是在头文件中,给我带来了这个问题。我使用 Code: : 块来编译这段代码