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.
关于这个问题: java.net.DatagramSocket 支持“已连接”状态的背景是什么?
我原以为 isConnected() 方法总是返回 false,因为 UDP/数据报套接字不支持连接状态。但是快速查看源代码表明 isConnected() 方法背后有一些逻辑。为什么?
阅读 Javadoc。当您“连接”DatagramSocket到远程 IP/端口时,您只是告诉套接字不要接受来自任何其他远程主机的数据包。
DatagramSocket