inetaddresstest.java

来自「kaffe Java 解释器语言,源码,Java的子集系统,开放源代码」· Java 代码 · 共 44 行

JAVA
44
字号
import java.net.InetAddress;import java.net.Inet6Address;public class InetAddressTest{    public static void main(String args[])	throws Throwable    {	InetAddress ia;	ia = InetAddress.getByName(null);	System.out.println("(null) = " + check(ia));		ia = InetAddress.getByName("");	System.out.println("\"\" = " + check(ia));	ia = InetAddress.getByName("localhost");	System.out.println("localhost = " + check(ia));	if( !ia.isLoopbackAddress() )	{	    System.out.println("Not a loopback?");	}    }    private static String check(InetAddress ia)         throws Throwable    {        String expected = (            ia instanceof Inet6Address ?                "localhost/::::::::1" :	        "localhost/127.0.0.1" );        if (ia.toString().equals(expected)) return "localhost/127.0.0.1";        return ia.toString();    }}/* Expected Output:(null) = localhost/127.0.0.1"" = localhost/127.0.0.1localhost = localhost/127.0.0.1*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?