JAVA的break只能跳出單重循環,若是是多重循環,要寫幾個break,很麻煩,這裏有一個簡單的方法,以下:spa
public class BreaklFor { public static void main(String args[]){ STR: //設置一個標記 使用帶此標記的break語句跳出多重循環體 for(int i=1;i<100;i++){ //讓i循環99次 for(int j=1;j<=i;j++){ if(i==10){ break STR ; } System.out.print(i + "X" + j + "=" + i*j) ; System.out.print(" ") ; } System.out.println() ; } } }