InetSocketAddress vs InetAddress

后端 未结 2 695
借酒劲吻你
借酒劲吻你 2021-01-04 04:46

Can anyone please explain me is there is any difference between InetAddress and InetSocketAddress classes in java, and if there is a difference, pl

2条回答
  •  难免孤独
    2021-01-04 05:42

    InetAddress

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

    InetSocketAddress

    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

提交回复
热议问题