我在构建课时遇到了问题。 class“Graph”在另一个文件中导入一个类“Bag”,并使用“Bag”作为其组件。
//Graph.h
#ifndef GRAPH_H
#define GRAPH_H
#include <fstream>
#include <iostream>
#include <vector>
#include "Bag.h"
class Bag;
class Graph
{
public:
Graph(int V);
Graph(std::ifstream& in_file);
int getV() { return V; }
int getE() { return E; }
void addEdge(int v, int w);
void showadj() ;
private:
int V;
int E;
std::vector<Bag> adj;
};
#endif
“Bag.h”如下:
//Bag.h
#ifndef BAG_H
#define BAG_H
#include <vector>
#include <iostream>
class Bag
{
public:
Bag();
void addBag(int i) { content.push_back(i); }
void showBag();
private:
std::vector<int> content;
};
#endif
Graph.cpp:
//Graph.cpp
#include "Graph.h"
#include "Bag.h"
Graph::Graph(int V) : V(V), E(0)
{
for (int i = 0; i < V; i++)
{
Bag bag;
adj.push_back(bag);
}
}
Bag.cpp(对不起,算了吧):
#include "Bag.h"
void Bag::showBag()
{
for (int i : content)
{
std::cout << i << " ";
}
}
当我尝试编译这两个类时,会出现一个错误:
C:\Users\ADMINI~1\AppData\Local\Temp\ccMj4Ybn.o:newtest.cpp:(.text+0x1a2): undef
ined reference to `Bag::Bag()'
collect2.exe: error: ld returned 1 exit status
答案 0 :(得分:4)
您还需要实现Bag::Bag()
文件中缺少的构造函数Bag.cpp
。
这是错误告诉你的。如果你不需要构造函数,那么你应该从类定义中删除它,这也可以解决这个错误。
另一种方法是在Bag.h
文件中提供一个空构造函数
class Bag
{
public:
Bag() {}
...
}