嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 5 元微信扫码支付:5 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
用qt写的多线程服务器和客户端,相互通信,搭配实例
QT_CS
├── Demo
│ ├── Clientaaa
│ │ ├── Setting
│ │ │ └── Config.ini
│ │ └── client_src.exe
│ ├── Clientbbb
│ │ ├── Setting
│ │ │ └── Config.ini
│ │ └── client_src.exe
│ ├── Clientccc
│ │ ├── Setting
│ │ │ └── Config.ini
│ │ └── client_src.exe
│ ├── ReadMe.txt
│ ├── Server
│ │ ├── D3Dcompiler_47.dll
│ │ ├── Qt5Core.dll
│ │ ├── Qt5Gui.dll
│ │ ├── Qt5Network.dll
│ │ ├── Qt5Svg.dll
│ │ ├── Qt5Widgets.dll
│ │ ├── Setting
│ │ │ └── Config.ini
│ │ ├── bearer
│ │ │ └── qgenericbearer.dll
│ │ ├── iconengines
│ │ │ └── qsvgicon.dll
│ │ ├── imageformats
│ │ │ ├── qgif.dll
│ │ │ ├── qicns.dll
│ │ │ ├── qico.dll
│ │ │ ├── qjpeg.dll
│ │ │ ├── qsvg.dll
│ │ │ ├── qtga.dll
│ │ │ ├── qtiff.dll
│ │ │ ├── qwbmp.dll
│ │ │ └── qwebp.dll
│ │ ├── libEGL.dll
│ │ ├── libGLESV2.dll
│ │ ├── opengl32sw.dll
│ │ ├── platforms
│ │ │ └── qwindows.dll
│ │ ├── server_src.exe
│ │ ├── styles
│ │ │ └── qwindowsvistastyle.dll
│ │ └── translations
│ │ ├── qt_ar.qm
│ │ ├── qt_bg.qm
│ │ ├── qt_ca.qm
│ │ ├── qt_cs.qm
│ │ ├── qt_da.qm
│ │ ├── qt_de.qm
│ │ ├── qt_en.qm
│ │ ├── qt_es.qm
│ │ ├── qt_fi.qm
│ │ ├── qt_fr.qm
│ │ ├── qt_gd.qm
│ │ ├── qt_he.qm
│ │ ├── qt_hu.qm
│ │ ├── qt_it.qm
│ │ ├── qt_ja.qm
│ │ ├── qt_ko.qm
│ │ ├── qt_lv.qm
│ │ ├── qt_pl.qm
│ │ ├── qt_ru.qm
│ │ ├── qt_sk.qm
│ │ └── qt_uk.qm
│ └── packet.bat
└── Src
├── Client
│ └── client_src
│ ├── Setting
│ │ └── Config.ini
│ ├── client_src.pro
│ ├── config.cpp
│ ├── config.h
│ ├── dialog.cpp
│ ├── dialog.h
│ ├── dialog.ui
│ └── main.cpp
└── Server
└── server_src
├── Setting
│ └── Config.ini
├── config.cpp
├── config.h
├── datastruct.cpp
├── datastruct.h
├── dialog.cpp
├── dialog.h
├── dialog.ui
├── main.cpp
├── server_src.pro
├── tcpserver.cpp
├── tcpserver.h
├── thread1.cpp
├── thread1.h
├── thread2.cpp
└── thread2.h
22 directories, 77 files