这是我遇到的一段有趣的代码:它看起来很奇怪,但确实可以编译。
public static void main(String[] args) {
http://servername:port/index.html
System.out.println("Hello strange world");
}
想法?
这是我遇到的一段有趣的代码:它看起来很奇怪,但确实可以编译。
public static void main(String[] args) {
http://servername:port/index.html
System.out.println("Hello strange world");
}
想法?
http:
是一个标签。其余的只是一个内联注释//
。有人可能会问,为什么我们在 Java 中有标签?
第一个想法:goto
。但是,goto
实现已从 Java 中删除,因为这是不必要的。唯一留下来的是一个保留关键字goto
。在这里阅读更多。
那么,标签的用途是什么?
标签可以与break
语句一起使用。文档中的示例,带有search
标签:
class BreakWithLabelDemo {
public static void main(String[] args) {
int[][] arrayOfInts = {
{ 32, 87, 3, 589 },
{ 12, 1076, 2000, 8 },
{ 622, 127, 77, 955 }
};
int searchfor = 12;
int i;
int j = 0;
boolean foundIt = false;
search:
for (i = 0; i < arrayOfInts.length; i++) {
for (j = 0; j < arrayOfInts[i].length; j++) {
if (arrayOfInts[i][j] == searchfor) {
foundIt = true;
break search;
}
}
}
if (foundIt) {
System.out.println("Found " + searchfor + " at " + i + ", " + j);
} else {
System.out.println(searchfor + " not in the array");
}
}
}
一个标签后跟一个内联注释
是的,Java 有标签
public static void main(String[] args) {
hello:
}
当然还有在线评论
public static void main(String[] args) {
int i; // this is a comment.
}
http:
是一个标签
//servername:port/index.html
是评论。