我有以下四个文件 a.hpp , b.hpp , b.cpp 和 main.cpp 在Ubuntu 16.04LTS中模仿我的原始文件的“ strong>”。
a.hpp
#ifndef A_H
#define A_H
#include <iostream>
namespace Utility{
typedef struct _structure{
int v;
int w;
}aStructure;
void foo(){
std::cout << "foo" << std::endl;
}
void goo(){
foo();
}
}
#endif
b.hpp
#ifndef B_H
#define B_H
#include <iostream>
#include "a.hpp"
class bCls{
private:
int x;
public:
void moo(Utility::aStructure s);
};
#endif
b.cpp
#include <iostream>
#include "a.hpp"
#include "b.hpp"
void bCls::moo(Utility::aStructure s){
std::cout << "moo" << std::endl;
}
main.cpp
#include <iostream>
#include "a.hpp"
#include "b.hpp"
int main(){
Utility::aStructure s;
bCls u;
u.moo(s);
return 0;
}
当我尝试使用 g ++ -std = c ++ 11 b.cpp main.cpp 进行编译时,会引发以下错误消息:
/tmp/ccwvPrRr.o: In function `Utility::foo()':
main.cpp:(.text+0x0): multiple definition of `Utility::foo()'
/tmp/ccCVJOoH.o:b.cpp:(.text+0x0): first defined here
/tmp/ccwvPrRr.o: In function `Utility::goo()':
main.cpp:(.text+0x23): multiple definition of `Utility::goo()'
/tmp/ccCVJOoH.o:b.cpp:(.text+0x23): first defined here
collect2: error: ld returned 1 exit status
我的搜索结果是Why am I getting multiple definition error when header included?。但是我的代码的不同之处在于,每个 b.hpp , b.cpp 和主目录中都需要 a.hpp 。 cpp 。
我很想知道自己在做错什么,以及在这种情况下的最佳编码方法以及相应的陷阱。