我正在做一个需要以下结构的项目:
2 个 CPP 文件包含类,这些类需要 H 文件 1 中的裸函数。类和裸函数需要 H 文件 2 中的变量。
我可以拆分 CPP 文件,以便它们使用 2 个单独的文件,其中包含 nakes 和他们需要的变量。但我更喜欢使用这种结构。
看起来编译器跳过了#ifndef命令,我对问题进行了测试:
主要的:
#include <iostream>
//1>CPPFile2.obj : error LNK2005: "bool Test1" (?Test1@@3_NA) already defined in CPPFile1.obj
//1>CPPFile2.obj : error LNK2005: "bool Test2" (?Test2@@3_NA) already defined in CPPFile1.obj
int main()
{
}
CPP文件1:
#include <iostream>
using namespace std;
#include "HFile1.h"
CPP文件2:
#include <iostream>
using namespace std;
#include "HFile2.h"
H文件1:
#include "HFile2.h"
#pragma once
#ifndef Name1
#define Name1
//Use test1, this workes fine
//Use test2, this workes fine
#endif
H文件2:
#pragma once
#ifndef Name2
#define Name2
bool Test1 = false;
bool Test2 = false;
#endif
#ifndef #define #endif 结构怎么可能不能正常工作?