刚才遇到的这个问题,在网上搜索了一下,
有说之前的程序已经运行了,有说pro文件有问题的,
我找了一会,发现我在头文件中定义了两个slots,
在cPP文件中没有实现。
见nokia论坛
Another reason might be that your source is incomplete and calls method DECLARATIONS that get called but the method IMPLEMENTATIONS are missing.
Declaration is the stuff that you usually put in a header file (method signature without body)
Implementation is the signature with body.
Usually if you look in the linker output, you can find which implementation the linker is missing.
click the "Compile Output" view (Alt+4) to see more detailed info.
这样,我找到了这个低级错误~~~
本文介绍了一种在Qt开发过程中常见的编译错误——声明了但未实现的slots。通过检查头文件与源文件的匹配情况,可以定位并解决此类问题。
1962

被折叠的 条评论
为什么被折叠?



