基本信息
源码名称:qt多线程服务器客户端
源码大小:16.18M
文件格式:.rar
开发语言:C/C++
更新时间:2021-02-02
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 5 元 
   源码介绍
用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