InetSocketAddress vs InetAddress(InetSocketAddress 与 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.
推荐答案
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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:InetSocketAddress 与 InetAddress
基础教程推荐
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
