Q&A-Qt编译错误-undefined reference to vtable for xxx
Question:
Qt编译时候出现如下错误提示:undefined reference to vtable for xxx
Answer:
出现此错误大概率是在类定义的h文件使用了Q_OBJECT宏后出现的,尝试以下方式解决:
1)在类实现cpp文件底部添加 #include “moc_className.cpp” ;
2)将工程先清除一次,然后QtCreator中选择执行qmake,再进行重新编译;
著作权归本网站(https://makerinchina.cn)所有,转载请注明来自 MakerInChina.