自己也是初学,用来记录自己学的东西,QTcpServer用于服务端监听,QTcpSocket用于通信,当创建一个QTcpServer时使用listen()绑定与监听,客户端会调用connectToHost()连接,连接成功服务器端会触发newConnection信号,客户端则是connected信号。
//服务端
servLis=new QTcpServer(this);
servLis->listen(QHostAddress::Any,port);
connect(servLis,&QTcpServer::newConnection,this,&Widget::newSock);//连接成功调用newconnection
//servSok=servLis->nextPendingConnection();//使用nextPendingConnection()创建一个通信套接字
//客户端
clientSoc= new QTcpSocket(this);
clientSoc->connectToHost(QHostAddress(ip),port);
connect(clientSoc,&QTcpSocket::connected,this,&Widget::succeed);//当连接成功会调用connected
当有数据流通过时会触发readyread信号使用write()写,read()读。