私は4つのファイル(2つのヘッダーと2つのコードファイル)を持っています。 FileA.cpp、FileA.h、FileB.cpp、FileB.hC++変数の複数の定義
FileA.cpp:
#include "FileA.h"
int main()
{
hello();
return 0;
}
void hello()
{
//code here
}
FileA.h:
#ifndef FILEA_H_
#define FILEA_H_
#include "FileB.h"
void hello();
#endif /* FILEA_H_ */
FileB.cpp:
#include "FileB.h"
void world()
{
//more code;
}
FileB.h:
#ifndef FILEB_H_
#define FILEB_H_
int wat;
void world();
#endif /* FILEB_H_ */
コンパイルしようとすると(「eclipse」で)「ワット」の多重定義が得られる そして、なぜそれがうまくいくかはわかりません。
リンクの世界へようこそ。 –