我有两个 C++ 命名空间,如下所示:
#ifndef TRANS_H
#define TRANS_H
namespace Trans
{
double Delta[3];
double calcDeltaPositions();
//and more that I will leave out for simplicity
};
#endif
#ifndef SPACE_H
#define SPACE_H
namespace Space
{
double vels[3];
void calcAccel(double DeltaVal[3]);
};
#endif
现在我有一个 main.cpp 文件:
#include "Trans.h"
#include "Space.h"
int main()
{
double pos = Trans::calcDeltaPositions();
Space::calcAccel(Trans::Delta);
return 0;
}
我一直收到一个错误,声称 Delta 是在 main.o 和 Trans.o 中定义的乘数,这怎么可能,因为我只声明 Delta 存在于 Trans 中?