本文介绍了InetSocketAddress 与 InetAddress的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

谁能解释一下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

这篇关于InetSocketAddress 与 InetAddress的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 23:38