我的qt应用程序出现问题,每当我尝试创建另一个类的对象时,它说:
1: error: LNK1120: 2 unresolved externals
。
我这样做:
#include "findForm.h"
...
void MainWindow::on_actionFind_triggered()
{
findForm ff;
}
以下是错误消息:
mainwindow.obj:-1:错误:LNK2019:未解析的外部符号" public: virtual __thiscall findForm :: ~findForm(void)" (?? 1findForm @@ @ UAE XZ) 在函数中引用" private:void __thiscall 主窗口:: on_actionFind_triggered(无效)" (?on_actionFind_triggered @ @@主窗口AAEXXZ)
mainwindow.obj:-1:错误:LNK2019:未解析的外部符号" public: __thiscall findForm :: findForm(class QWidget *)" (?? 0findForm @@ QAE @ PAVQWidget @@@ Z)在函数" private中引用: void __thiscall MainWindow :: on_actionFind_triggered(void)" (?on_actionFind_triggered @ @@主窗口AAEXXZ)
debug \ XLEditor.exe:-1:错误:LNK1120:2个未解析的外部
我已经尝试过清洁和重建,但没有真正有效,我也有其他项目的问题,不仅仅是这个。