InetSocketAddress 与 InetAddress

2022-01-19 00:00:00 network-programming java

谁能解释一下java中的InetAddressInetSocketAddress类有什么区别,如果有区别,请解释一下.我用谷歌搜索了它,但找不到任何解释.

Can anyone please explain me is there is any difference between InetAddress and InetSocketAddress classes in java, and if there is a difference, please explain the same. I google-ed it up but I couldn't find anything explanatory.

推荐答案

Inet地址

InetAddress 的实例由 IP 地址和可能的相应主机名组成

An instance of an InetAddress consists of an IP address and possibly its corresponding host name

InetSocketAddress

这个类实现了一个IP套接字地址(IP地址+端口号),也可以是一对(主机名+端口号),在这种情况下会尝试解析主机名

This class implements an IP Socket Address (IP address + port number) It can also be a pair (hostname + port number), in which case an attempt will be made to resolve the hostname

相关文章