资源简介

基于Qt实现的多人聊天。一个服务器对应多个客户端。服务器可以对新加进来的客户端进行监听,然后给每个客户端提示信息。此外还有互发消息功能。先在服务器创建连接进行监听。客户端填写用户名进入聊天室后建立连接便可互发消息。

资源截图

代码片段和文件信息

#include “tcpserver.h“
#include 
#include “tcpclient.h“
int main(int argc char *argv[])
{
    QApplication a(argc argv);
    TcpServer w;
    w.show();
    TcpClient w1;
    w1.show();
    TcpClient w2;
    w2.show();
    return a.exec();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-08-01 22:51  manypeople\
     文件         271  2018-08-01 22:51  manypeople\main.cpp
     文件         568  2018-07-26 11:27  manypeople\manypeople.pro
     文件       18275  2018-08-01 22:51  manypeople\manypeople.pro.user
     文件        1828  2018-07-27 09:59  manypeople\server.cpp
     文件         718  2018-07-27 10:09  manypeople\server.h
     文件        5333  2018-07-27 09:19  manypeople\tcpclient.cpp
     文件        1252  2018-08-01 11:36  manypeople\tcpclient.h
     文件        2819  2018-07-26 13:22  manypeople\tcpclient.ui
     文件         939  2018-07-27 09:58  manypeople\tcpclientsocket.cpp
     文件         657  2018-07-27 10:08  manypeople\tcpclientsocket.h
     文件         631  2018-07-27 09:57  manypeople\tcpserver.cpp
     文件         599  2018-07-27 09:58  manypeople\tcpserver.h
     文件        3044  2018-07-26 13:22  manypeople\tcpserver.ui
     文件        1467  2018-07-13 09:52  manypeople\utility.cpp
     文件         190  2018-07-13 09:52  manypeople\utility.h

评论

共有 条评论