所以大概我正在做一些非常愚蠢的事情并抓住它,但我不断得到一个未定义的引用,指向我最明确定义的函数。在我的 .cpp 文件之一中,我使用以下命令:
#include "MVec.h"
...
MVec ans;
...
for(int i = 0; i < 3; i++)
ans[i] = ...
在 MVec.h 中,我有:
class MVec {
...
inline double & operator[](const int i);
inline const double & operator[](const int i) const;
...
};
最后,在 mvec.cpp 中,我有:
inline double & MVec::operator[](const int i) {
#ifdef CHECK_BOUNDS
if(i < 0 || i >= 3)
throw("Subscript out of bounds");
#endif
return vec[i];
}
inline const double & MVec::operator[](const int i) const {
#ifdef CHECK_BOUNDS
if(i < 0 || i >= 3)
throw("Subscript out of bounds");
#endif
return vec[i];
}
然而,不知何故,当我编译这两个 .cpp 文件并尝试链接它们时
g++ atommanager.cpp -o atommanager.o
g++ mvec.cpp -o mvec.o
g++ atommanager.o mvec.o -o gpumd
我总是得到一个错误:
atommanager.cpp:(.text+0x76): undefined reference to `MVec::operator[](int)'
这里,atommanager.cpp 是我提到的第一个 .cpp 文件的名称。