JAVA解惑之URL的愚弄

public class BrowserTest {
    public static void main(String
        System.out.print("iexplore
        http://www.google.com;
        System.out.println(":maxim
    }
}

此程序会打印出:iexplore:maxim,好像中间的url没有什么影响。确实是这样,编译器把http:当作成了标号,而//当作为了行尾注释。所以行为是正常的。所以在写标号的时候一般不要这么写,这样写会有点一下子看迷糊的感觉。。不过幸好JAVA中没有goto。

你可能感兴趣的:(java,.net,Google,asp.net,asp)