我已经浏览了很多关于此的问题,但似乎没有人遇到与我完全相同的问题。确切的错误消息是:
g++ -Wall -o Main Main.cpp
Undefined symbols for architecture x86_64:
"World::World(int)", referenced from:
_main in Main-vskeMa.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
这可能是命名空间问题吗?如上所示,我正在使用g ++在命令行上进行编译。以下是相关文件:
的main.cpp
#include <iostream>
#include <cstdlib>
#include "World.h"
using namespace std;
int main()
{
cout << "-- Program Started --" << endl;
World theWorld (4);
return 0;
}
World.h
#include <cstdlib>
#include <string>
#include <iostream>
#include <vector>
#include <time.h>
#include <stdlib.h>
#include "Biome.h"
#define TILE_SIZE 10
#define WORLD_DIM 10
#define NUM_BIOMES 5
using namespace std;
class World{
public:
World(int);
protected:
Biome* biomeArray[WORLD_DIM][WORLD_DIM];
};
World.cpp
#include "World.h"
using namespace std;
/* functions */
/* constructor */
World::World(int numCities){
cout << "creating the world with " << numCities << " cities...";
for (int i=0; i<WORLD_DIM; i++){
for (int j=0; j<WORLD_DIM; j++){
int random = rand() % NUM_BIOMES;
Biome* aBiome = createBiome(random);
cout << aBiome->name << endl;
}
}
cout << "done!" << endl;
}
非常感谢任何帮助,谢谢!
答案 0 :(得分:0)
这可能是命名空间问题吗?
没有。您甚至没有使用名称空间。
如上所示,我使用g ++在命令行上进行编译。
不,你不是。您没有编译或链接World.cpp
。