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

问题描述

任何人都可以解释一下,我在java中的 InetAddress InetSocketAddress 类之间有什么区别,如果有的话是有区别的,请解释一下。我谷歌了,但我找不到任何解释。

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.

推荐答案

InetAddress的一个实例包括IP地址和可能的相应主机名

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

此类实现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 vs InetAddress的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 19:03