标签:color bsp -- code blog while logs bre col
retry: while(true){ System.out.println(2); Thread.sleep(2000); while(true){ System.out.println(1); Thread.sleep(2000); continue retry; } }
continue retry--------跳出此次所有循环,到retry位置,再执行所有的循环,会重复打印,2 1 2 1 2 1 2 1 2 1
break retry-------------跳出所有循环,到retry标记位置,但是不再执行所有循环
如果有break,但是没有retry标记,那么,只能跳出内部第一层循环,而不能跳出外面那层循环。
标签:color bsp -- code blog while logs bre col
原文地址:http://www.cnblogs.com/chuliang/p/7493162.html