QT开发错误集

  • Post author:
  • Post category:其他


1、错误 1 error C2679: 二进制“=”: 没有找到接受“QTcpSocket *”类型的右操作数

错误语段:socket = new QTcpSocket();

解决:声明时QTcpSocket *socket写成了QTcpSocket socket导致错误,改回来就可以了

2、this application failed to start because it could not find or load the qt platform plugin “window”.

此应用程序无法启动,因为它无法找到或加载qt平台插件“窗口”。

解决办法:将

platforms文件和里面的




复制到代码中缺少的位置,


3、unused parameter 变量


解决办法:在错误位置加上,申明不要使用变量


(void)变量名;


4、error: invalid use of incomplete type ‘class QCheckBox’


添加头文件:

#include<QCheckBox>

#include<QLabel>

#include<QLineEdit>

#include<QPushButton>

#include<QHBoxLayout>

4、error: undefined reference to `@__security_check_cookie@4′

解决办法很简单,只需要在

.pro文件

中添加以下两行即可:

LIBS += -lopengl32\ 
        -lGLU32

5、:-1: error: No rule to make target ‘myffmpeg.cpp’, needed by ‘debug/myffmpeg.o’.  Stop.

是因为.pro中还带有以前的文件名称,需要转成现在的或者删除掉

6、调试时:Debugging starts  Debugging has finished,运行时:启动程序失败,路径或者权限错误?

这个问题的原因是生成的exe名称中带有“Update”导致生成的软件需要管理员权限才能运行,将update修改掉就行了



版权声明:本文为bigtree_mfc原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。