例如:
public class MyLink{
public static void main(String[] args) {
http://google.com
System.out.println("And this works!");
}
}
此代码将编译没有任何问题。为什么呢?
答案 0 :(得分:12)
Java将http:
解释为label,其余部分是注释。
答案 1 :(得分:4)
在Java http:
中,您可以在循环或任何pther语句中使用label,而//google.com
是single-line comment。