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.
我正在考虑在我的服务器的单独线程上使用 socket.listen(),它会暂停线程吗?
我想让我的线程听,与客户端交谈,结束客户端连接,再听一次。
该Listen方法不会阻塞当前线程,它只是设置Socket接受新连接。同步模式中的方法Accept将阻塞线程,直到接收到连接。
Listen
Socket
Accept
注意:关于方法的 MSDN 文档Socket非常好地列出了它们是否在备注部分中阻止。例子