Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
大家好,我在 qt 和 qwt 中工作,但在我的程序中,我收到了这些错误
未定义对“vtable for MainWindow”错误的引用:collect2:ld 返回 1 退出状态
我不明白这些错误是什么意思有人可以解释一下,因为我的代码显然没有错误
谢谢
您没有链接到您应该链接的所有内容。您需要在您的 .cpp 文件上运行 moc,并在#include "moc_myfile.cpp"末尾添加egmyfile.cpp
#include "moc_myfile.cpp"
myfile.cpp
或者,您已经声明了一个虚函数(也许是析构函数)而不定义它。