Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以解释一下为什么 UDP 服务器不需要使用线程,为什么 TCP 服务器需要在客户端/服务器通信期间使用线程?
谢谢
我想你误会了。UDP 服务器不需要使用多个线程,因为它只需要处理一个套接字。TCP 服务器必须为每个连接处理一个套接字,因此在阻塞模式下,除了处理侦听套接字的线程之外,它还需要每个连接一个线程。