QT 笔记
Saber丶丶
zzz
展开
-
QT多线程
QT下多线程大概就是继承QThread这个类然后复写run()函数 下面是我写的一个QThread类。 其中包括子线程像主线程发送消息: .h文件#ifndef DY_SHOW_THREAD_H#define DY_SHOW_THREAD_H#include <QThread>class dy_show_thread:public QThread{ Q_OBJECTpublic原创 2016-08-10 18:45:07 · 394 阅读 · 0 评论 -
Qt5.6跨平台问题
啊,这个问题。。最近写了一个斗鱼弹幕接收的cpp。。其实是官方文档给的大部分,我修改了一小点QAQ。 想着QT垮了个平台,然后就出了这档子事。我是在Ubuntu 64位下QT5.664 位编译的成功的能运行。 然后放到了win7 64位下的QT5.632位 就出错。。 问题如下:D:\Qt\Qt5.6.1\5.6\mingw49_32\include\QtCore\qglobal.h:808:原创 2016-08-10 18:33:35 · 1395 阅读 · 2 评论 -
QT 5.6转 QT 4.8问题总结
/root/Desktop/hero/MyTCPServer-build-desktop/../MyTCPServer/ui_tcpserverwindow.h:13: error: QtWidgets/QAction: No such file or directory将QtWidgets换成QtGui/root/Desktop/hero/MyTCPServer-build-desktop/.原创 2016-10-18 18:25:05 · 4680 阅读 · 1 评论 -
QT5.0以上版本 incomingConnection不能被调用的解决方案
TcpSocket编程时,重写了incomingConnection这个函数,但是在服务器端运行的时候,提示客户端已经连接但是无法调用incomingConnection这个函数.解决方案:把incomingConnection(int socketDescriptor)改为 incomingConnection(qintptr socketDescriptor)即可原创 2016-10-08 15:09:29 · 5265 阅读 · 7 评论