我有 4 个文件(2 个标题和 2 个代码文件)。文件A.cpp、文件A.h、文件B.cpp、文件B.h
文件A.cpp:
#include "FileA.h"
int main()
{
hello();
return 0;
}
void hello()
{
//code here
}
文件AH:
#ifndef FILEA_H_
#define FILEA_H_
#include "FileB.h"
void hello();
#endif /* FILEA_H_ */
文件B.cpp:
#include "FileB.h"
void world()
{
//more code;
}
文件B.h:
#ifndef FILEB_H_
#define FILEB_H_
int wat;
void world();
#endif /* FILEB_H_ */
当我尝试编译(使用eclipse)时,我得到“'wat'的多个定义”而且我不知道为什么,它似乎应该可以正常工作。