请问老师,一个类至少有一个默认的构造函数吧,这个intetAddress类不存在构造函数的意思是不是因为不能凭空构造一个新的机器?
InetAddress对象的获取
InetAddress的构造函数不是公开的(public),所以需要通过它提供的静态方法来获取,有以下的方法:
static InetAddress[] getAllByName(String host)
static InetAddress getByAddress(byte[] addr)
static InetAddress getByAddress(String host,byte[] addr)
static InetAddress getByName(String host)
static InetAddress getLocalHost()