下面的語句會(huì)編譯報(bào)錯(cuò)或者打印什么?
System.out.print("baidu site :"); https://www.baidu.com; System.out.println(" format");
很多人會(huì)說:會(huì)編譯出錯(cuò),中間那行是什么鬼?
其實(shí),不會(huì)報(bào)錯(cuò),會(huì)打印出:
baidu site : format
如果改成這樣的語句,是不是就不會(huì)覺得編譯報(bào)錯(cuò)了?
System.out.print("baidu site :"); https : //www.baidu.com; System.out.println(" format");
像不像switch語句中的case
int q = (n+7)/8; switch (n%8) { case 0: do { foo(); // Great C hack, Tom, case 7: foo(); // but it's not valid here. case 6: foo(); case 5: foo(); case 4: foo(); case 3: foo(); case 2: foo(); case 1: foo(); } while (--q > 0); }
上面的語句,":" 是statement label 翻譯成標(biāo)號語句。
其語法如下:
LabeledStatement: Identifier : Statement LabeledStatementNoShortIf: Identifier : StatementNoShortIf
與c和c++不同,JAVA中沒有g(shù)oto語句;標(biāo)號語句用于出現(xiàn)在標(biāo)號語句內(nèi)任何地方的break或者continue語句之上。
再來一個(gè)標(biāo)句語句作為結(jié)尾的練習(xí)吧
class Test { char[] value; int offset, count; int indexOf(TestString str, int fromIndex) { char[] v1 = value, v2 = str.value; int max = offset + (count - str.count); int start = offset + ((fromIndex < 0) ? 0 : fromIndex); i: for (int i = start; i <= max; i++) { int n = str.count, j = i, k = str.offset; while (n-- != 0) { if (v1[j++] != v2[k++]) continue i; } return i - offset; } return -1; } }
參考資料
【1】https://docs.oracle.com/javase/specs/jls/se12/html/jls-14.html#jls-14.7