带标签的for循环

for循环可以加标签,使用break或者continue时,若存在多层嵌套循环可指定标签的for循环

public class ForLabel {
    public static void main(String[] args){
        label:for (int i = 1; i <= 5; i++) {
            for (int j = 1; j <= 5; j++) {
                System.out.print(j);
                if(j == 3){
                    //break label;跳出标签为label的for循环
                    continue label;//label可以是任意字符
                }    
            }
        }
    }
}

带标签的for循环

上一篇:运算符的扩展


下一篇:[vue3]does not exist on type 'ComponentPublicInstance.md