我知道错误是不言自明的,但我似乎无法在我的代码中找到内部问题。对我来说似乎没问题。无论如何,我的头文件都有:
GList.h:
#ifndef LIST_H_
#define LIST_H_
#include "GNode.h"
class GList {
GNode *head,*last;
int size;
public:
GList();
~GList();
Functions();
};
#endif
GNode.h:
#pragma once
#include "VList.h"
#include "Key.h"
class GNode
{
Key value;
VList *Vec_in; // Vertex List
VList *Vec_out;
GNode *next, *prev;
public:
GNode();
GNode(Key );
~GNode();
Functions();
};
VList.h:
#ifndef LIST_H_
#define LIST_H_
#include "VNode.h"
class VList {
VNode *head,*last;
int size;
public:
VList();
~VList();
Functions();
};
#endif
VNode.h:
#pragma once
class Vertex;
class VNode
{
Vertex *value;
VNode *next, *prev;
public:
VNode();
VNode(Vertex *);
~VNode();
Functions();
};
class Vertex {
int trans_amount;
VNode *Start; // The VNode that the vertex beggins from
VNode *Dest; // the destination node that vertex ends up
public:
Vertex();
Vertex(int);
~Vertex();
Functions();
};
main.cpp(我不知道是否需要它。检查代码只是一个简单的主要内容):
#include <iostream>
#include "GList.h"
using namespace std;
int main(int argc, char **argv) {
GList *list = new GList;
for (int i = 0; i < 20; i++) {
Key x(i);
list->Push(x);
}
list->PrintList();
delete list;
return 0;
}
当我尝试编译时遇到以下错误:
In file included from GList.h:4:0,
from GList.cpp:1:
GNode.h:11:2: error: ‘VList’ does not name a type
VList *Vec_in; // Vertex List
^
GNode.h:12:2: error: ‘VList’ does not name a type
VList *Vec_out;
^
In file included from GList.h:4:0,
from main.cpp:3:
GNode.h:11:2: error: ‘VList’ does not name a type
VList *Vec_in; // Vertex List
^
GNode.h:12:2: error: ‘VList’ does not name a type
VList *Vec_out;
VList&amp; VNode源文件正在工作,因为在一个不同的主要我得到了我期望的结果所以我猜我缺乏关于前向声明的知识或缺少一些非常基本的东西。
PS:我没有找到发布.cpp文件的充分理由,因为它包含错误。
答案 0 :(得分:3)
您的包含警卫似乎存在(复制/粘贴?)问题。在GList.h
中应该有
#ifndef GLIST_H_
#define GLIST_H_
...
#endif
并在VList.h
#ifndef VLIST_H_
#define VLIST_H_
...
#endif