QT 多线程和 QSocket 网络编程实例解析
创始人
2024-08-01 11:51:26
0

本文介绍的是QT 多线程QSocket 网络编程实例解析,要实现网络编程,不说这么多,先来看内容。

(1) 带后缀-mt的库才是支持多线程的.

例如windows下面的qt-mt320.lib,其他平台libqt-mt

(2)编译问题,要添加QT_THREAD_SUPPORT

(30针对线程里面而言,blocking(阻塞的) = synchronous(同步的 )

non-blocking (非阻塞的)  = asynchronous(异步的 )

Qt的signal/slot的事件机制都是基于主程序的线程的,因此所有的事件都是阻塞型的(blocking),也就是说除非你处理完某个slot事件,不然不会有下个事件被触发。

(4)QSocket,QSocketNotifier不能和QThread一起使用

  1. QSocket is for non-blocking IO, it uses some polling like poll() or select() internally and notifies the actual code by emitting signals.  
  2. So QSocket is for use with only the event loop thread, for example in a client with only one socket or a server with very few connections.  
  3. If you want a threaded approach use QThread and QSocketDevice.  
  4. Put one SocketDevice into listening mode and on accept() create a Handler Thread for the socket file descriptor. 
  5. Use the second QSocketDevice constructor to initialise the Connection's socket device instance.  
  6. The server does  
  7. bind()  
  8. listen()  
  9. and  
  10. accept()  
  11. When accept returns it has the filedescriptor of the connection's socket which you can pass to another QSocketDevice constructor.  
  12. The client does connect() to establish the connection.  
  13. Both use readBlock/writeBlock/waitForMore to transfer data 

.

一个例子:

(1)用VC6.0新建个Win32 Console Application工程

(2)Project Settings里面Link标签页面添加qtmain.lib qt-mt320.lib

   Project Settings里面C/C++标签页面添加QT_THREAD_SUPPORT

(3)源代码文件(main.cpp):

  1. #include  
  2. class MyThread : public QThread   
  3. {      
  4. public:  
  5.     virtual void run();  
  6. };  
  7. void MyThread::run()  
  8. {  
  9.     for( int count = 0; count < 20; count++ )   
  10.     {  
  11.         sleep( 1 );  
  12.         qDebug( "Ping!" );  
  13.     }  
  14. }  
  15. int main()  
  16. {  
  17.     MyThread a;  
  18.     MyThread b;  
  19.     a.start();  
  20.     b.start();  
  21.     a.wait();  
  22.     b.wait();  

注释:

This will start two threads, each of which writes Ping! 20 times to the screen and exits.

The wait() calls at the end of main() are necessary because exiting main() ends the program,

unceremoniously killing all other threads.

Each MyThread stops executing when it reaches the end of MyThread::run(),

just as an application does when it leaves main().

小结:关于QT 多线程QSocket 网络编程实例解析的内容介绍到这,希望本文对你有所帮助。

相关内容

热门资讯

如何允许远程连接到MySQL数... [[277004]]【51CTO.com快译】默认情况下,MySQL服务器仅侦听来自localhos...
如何利用交换机和端口设置来管理... 在网络管理中,总是有些人让管理员头疼。下面我们就将介绍一下一个网管员利用交换机以及端口设置等来进行D...
施耐德电气数据中心整体解决方案... 近日,全球能效管理专家施耐德电气正式启动大型体验活动“能效中国行——2012卡车巡展”,作为该活动的...
Windows恶意软件20年“... 在Windows的早期年代,病毒游走于系统之间,偶尔删除文件(但被删除的文件几乎都是可恢复的),并弹...
20个非常棒的扁平设计免费资源 Apple设备的平面图标PSD免费平板UI 平板UI套件24平图标Freen平板UI套件PSD径向平...
德国电信门户网站可实时显示全球... 德国电信周三推出一个门户网站,直观地实时提供其安装在全球各地的传感器网络检测到的网络攻击状况。该网站...
着眼MAC地址,解救无法享受D... 在安装了DHCP服务器的局域网环境中,每一台工作站在上网之前,都要先从DHCP服务器那里享受到地址动...
为啥国人偏爱 Mybatis,... 关于 SQL 和 ORM 的争论,永远都不会终止,我也一直在思考这个问题。昨天又跟群里的小伙伴进行...