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.
我是 C# 和网络编程的初学者,我有一个问题: - 我在端口 100 上有一个TcpListner和 2 TcpClient,它们都在同一台机器上运行,那么第二个客户端可以工作吗?或者它是否给出错误 - 端口已在使用中?
TcpListner
TcpClient
它们都应该工作,因为客户端不占用任何端口,它只是连接到它。您可以让多个客户端连接到同一个端口(例如,多个 Web 浏览器连接到同一个 Web 服务器)。但是,您不能在同一端口上拥有两台服务器,但这听起来不像您正在尝试做的事情。
一种简单的查找方法是运行所有内容并查看是否出现错误。