我有两个头文件,我需要头文件 2 中的头文件 1 中的一些变量。这里有一些信息可以提供帮助。
int SelRace, ...
char Race[80], ...
这两个来自头文件 1,我需要头文件 2 中的这些值来遵循 if() 语句。在头文件 1 中,SelRace 被分配了 1、2 或 3,我尝试在完成后再次调用它。这是头文件 2 中需要它的地方。
while (1)
{
if(SelRace == 1)
{
cout << "[text here]" << endl;
}
else if(SelRace == 2)
{
cout << "[text here]" << endl;
}
else if(SelRace == 3)
{
cout << "[text here]" << endl;
}
else
{
cout << endl;
}
}
Race[80] 将在 [text here] 中的各个点重印,因为我还没有填写这些内容。根据 SelRace 的值,Race[80] 也写入了不同的字符串。
那么我该怎么做呢?