我收到很多LNK2019错误,因此我创建了一个小型测试类以查看我是否仍然能够编写C ++代码,并且此错误也发生在这里。我知道,LNK2019经常发生,我已经检查了导致此错误的典型问题。
class a
{
public:
a();
void f();
};
#include "a.h"
a::a()
{
}
void a::f()
{
}
#include "a.h"
//somewhere in the code
a::f();
这给了我“ LNK2019无法解析的外部... a :: f()...”,我看不到我在做什么错。我正在使用Qt IDE。