- 相關推薦
Java中goto實現(xiàn)方法
Java語言中goto是保留關鍵字,沒有goto語句,也沒有任何使用goto關鍵字的地方。下面YJBYS小編為大家整理了關于Java中goto實現(xiàn)方法,希望對你有所幫助。
Java中也可在特定情況下,通過特定的手段,來實現(xiàn)goto的功能。顯然Java不愿意開發(fā)者隨意跳轉程序。下面解釋兩個特定:
特定情況:只有在循環(huán)體內,比如for、while語句(含do.……while語句)中。
特定手段:語句標簽和循環(huán)控制關鍵字break、continue,語法格式是:break/continue 語句標簽。
break、continue和語句標簽
1、語句標簽
語句標簽的語法是:標簽名:
語句標簽可以定義在方法體內的最后一條語句之前即可。但是語句標簽實際使用的機會是與break和continue結合使用的,而break和continue是和循環(huán)語句結合使用的,因此實際上語句標簽的使用也是和循環(huán)緊密結合的。
語句標簽在被使用的情況,只能定義在循環(huán)迭代語句之前,否則編譯出錯!
因此,有意義、可使用的標簽含義是:指定循環(huán)語句的標識!
2、break、continue語句單獨使用
單獨使用情況下:break語句作用是結束當前的循環(huán)迭代體,進而執(zhí)行剩余的語句。
continue語句的作用是結束本次迭代過程,繼續(xù)執(zhí)行下一輪迭代。
3、break、continue語句結合語句標簽的使用
為什么需要語句標簽呢?
原因是因為程序可能有循環(huán)的嵌套,當多層循環(huán)嵌套時候,有時候需要一次跳出多級循環(huán),這種情況下就需要結合語句標簽才能實現(xiàn)此功能了。
帶標簽使用情況下:break中斷并跳出標簽所指定循環(huán),continue跳轉到標簽指定的循環(huán)處,并繼續(xù)執(zhí)行該標簽所指定的循環(huán)。
為了說明情況,看看下面的例子:
import java.util.Random;
/**
* 語句標簽測試
*
* @author leizhimin 2009-7-16 11:43:08
*/
public class TestLable {
public static void main(String[] args) {
outer:
for (int i = 0; i 《 10; i++) {
System.out.println(“\nouter_loop:” + i);
inner:
for (int k = 0; i 《 10; k++) {
System.out.print(k + “ ”);
int x = new Random()。nextInt(10);
if (x 》 7) {
System.out.print(“ 》》x == ” + x + “,結束inner循環(huán),繼續(xù)迭代執(zhí)行outer循環(huán)了!”);
continue outer;
}
if (x == 1) {
System.out.print(“ 》》x == 1,跳出并結束整個outer和inner循環(huán)!”);
break outer;
}
}
}
System.out.println(“——》》》所有循環(huán)執(zhí)行完畢!”);
}
}
執(zhí)行結果:
outer_loop:0
0 1 2 3 4 5 6 7 8 9 》》x == 8,結束inner循環(huán),繼續(xù)迭代執(zhí)行outer循環(huán)了!
outer_loop:1
0 1 2 3 4 5 》》x == 9,結束inner循環(huán),繼續(xù)迭代執(zhí)行outer循環(huán)了!
outer_loop:2
0 1 2 3 4 5 6 7 8 9 》》x == 8,結束inner循環(huán),繼續(xù)迭代執(zhí)行outer循環(huán)了!
outer_loop:3
0 1 2 3 4 》》x == 9,結束inner循環(huán),繼續(xù)迭代執(zhí)行outer循環(huán)了!
outer_loop:4
0 1 2 3 4 5 6 7 8 9 10 》》x == 8,結束inner循環(huán),繼續(xù)迭代執(zhí)行outer循環(huán)了!
outer_loop:5
0 》》x == 1,跳出并結束整個outer和inner循環(huán)!——》》》所有循環(huán)執(zhí)行完畢!
Process finished with exit code 0
【Java中goto實現(xiàn)方法】相關文章:
Java動態(tài)代理實現(xiàn)AOP的方法07-22
在VBScript中實現(xiàn)函數(shù)的方法07-08
java中File類的使用方法10-01
實現(xiàn)鼠標畫圖的Java程序06-22
Java多線程的實現(xiàn)方式07-08
在Word 2003版中實現(xiàn)自動求和的方法09-26
java中File類有哪些使用方法06-30